devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=2be84a6073641578f1e0d5a35d9ef935a171bef5

commit 2be84a6073641578f1e0d5a35d9ef935a171bef5
Author: Chris Michael <devilho...@comcast.net>
Date:   Sun Oct 27 15:43:18 2013 +0000

    Fix compiler warning(s) about eina_hash_int64 being passed pointer
    from integer
    
    Signed-off-by: Chris Michael <devilho...@comcast.net>
---
 src/bin/edje/edje_cc_out.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/edje/edje_cc_out.c b/src/bin/edje/edje_cc_out.c
index 575d3aa..95027e7 100644
--- a/src/bin/edje/edje_cc_out.c
+++ b/src/bin/edje/edje_cc_out.c
@@ -247,8 +247,8 @@ _part_lookup_key_pc_hash(const void *key, int key_length 
EINA_UNUSED)
    if (a->stable)
      {
 #ifdef __LP64__
-        return eina_hash_int64((uintptr_t) &a->pc, sizeof (void*)) ^
-          eina_hash_int64((uintptr_t) &a->mem.dest, sizeof (void*));
+        return eina_hash_int64((uintptr_t *) &a->pc, sizeof (void*)) ^
+          eina_hash_int64((uintptr_t *) &a->mem.dest, sizeof (void*));
 #else
         return eina_hash_int32((uintptr_t*) &a->pc, sizeof (void*)) ^
           eina_hash_int32((uintptr_t*) &a->mem.dest, sizeof (void*));

-- 


Reply via email to