jackdanielz pushed a commit to branch master.

commit 2ac4cdce762184fe46865ee7dcb69ed86abf19cf
Author: Daniel Zaoui <[email protected]>
Date:   Tue Apr 30 15:40:27 2013 +0300

    Eo: Fix for warning on 64 bits.
---
 src/lib/eo/eo.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/eo/eo.c b/src/lib/eo/eo.c
index 35ac937..723d2e7 100644
--- a/src/lib/eo/eo.c
+++ b/src/lib/eo/eo.c
@@ -75,8 +75,8 @@ struct _Eo_Internal {
 #define OP_CLASS_OFFSET_GET(x) (((x) >> EO_OP_CLASS_OFFSET) & 0xffff)
 
 #define ID_CLASS_GET(id) ({ \
-      (_Eo_Class *) ((id <= _eo_classes_last_id) && (id > 0)) ? \
-      (_eo_classes[id - 1]) : NULL; \
+      (_Eo_Class *) (((id <= _eo_classes_last_id) && (id > 0)) ? \
+      (_eo_classes[id - 1]) : NULL); \
       })
 
 #define EO_ALIGN_SIZE(size) eina_mempool_alignof(size)

-- 

------------------------------------------------------------------------------
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with <2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1

Reply via email to