raster pushed a commit to branch master.

commit 0d83feaa7945f017f2d467d28d05637f5252223e
Author: Carsten Haitzler (Rasterman) <[email protected]>
Date:   Tue Jul 16 19:24:00 2013 +0900

    fix clang allocator size mistmatch (by casting - clang is wrong)
---
 src/lib/evas/common/evas_tiler.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/evas/common/evas_tiler.c b/src/lib/evas/common/evas_tiler.c
index 6315c3c..9147db3 100644
--- a/src/lib/evas/common/evas_tiler.c
+++ b/src/lib/evas/common/evas_tiler.c
@@ -83,7 +83,7 @@ rect_list_node_pool_get(void)
 
         return node;
      }
-   else return malloc(sizeof(rect_node_t));
+   else return (list_node_t *)malloc(sizeof(rect_node_t));
 }
 
 static inline void

-- 

------------------------------------------------------------------------------
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk

Reply via email to