edje: silent compiler warning.

SVN revision: 76440
This commit is contained in:
Cedric BAIL 2012-09-11 06:57:50 +00:00
parent b683dbec0b
commit b757565407
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__ #ifdef __LP64__
return eina_hash_int64(key, sizeof (void*)) ^ return eina_hash_int64(key, sizeof (void*)) ^
eina_hash_int64(((unsigned char*) key) + sizeof (void*), sizeof (void*)); eina_hash_int64((void*)(((unsigned char*) key) + sizeof (void*)), sizeof (void*));
#else #else
/* double 32 bits pointer is ... 64bits awesome ! */ /* double 32 bits pointer is ... 64bits awesome ! */
return eina_hash_int64(key, key_length); return eina_hash_int64(key, key_length);