From 0d83feaa7945f017f2d467d28d05637f5252223e Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Tue, 16 Jul 2013 19:24:00 +0900 Subject: [PATCH] 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 6315c3c81f..9147db38c6 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