edje: oops typo.

SVN revision: 76439
This commit is contained in:
Cedric BAIL 2012-09-11 06:53:32 +00:00
parent a234bf5aa9
commit b683dbec0b
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ _double_pointer_key_hash(const void *key, int key_length __UNUSED__)
{
#ifdef __LP64__
return eina_hash_int64(key, sizeof (void*)) ^
eina_hash_int64(((unsigned char) key) + sizeof (void*), sizeof (void*));
eina_hash_int64(((unsigned char*) key) + sizeof (void*), sizeof (void*));
#else
/* double 32 bits pointer is ... 64bits awesome ! */
return eina_hash_int64(key, key_length);