evas evas_render: removed unnecessary semicolon from a macro.

This fixes coverity CID 1132631.
This commit is contained in:
Daniel Juyung Seo 2013-11-27 02:02:41 +09:00
parent 0e0f79c6f2
commit 2ebd985b31
1 changed files with 1 additions and 2 deletions

View File

@ -2452,8 +2452,7 @@ _canvas_render_dump(Eo *eo_e EINA_UNUSED, void *_pd, va_list *list EINA_UNUSED)
e->engine.func->output_dump(e->engine.data.output);
#define GC_ALL(Cow) \
while (eina_cow_gc(Cow)) \
;
while (eina_cow_gc(Cow))
GC_ALL(evas_object_proxy_cow);
GC_ALL(evas_object_map_cow);