devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=15064d51c928962d368cedc2f0028f1c97359c28
commit 15064d51c928962d368cedc2f0028f1c97359c28 Author: Chris Michael <[email protected]> Date: Wed Aug 13 10:23:47 2014 -0400 evas-software-x11: Remove EINA_UNUSED for function paramater that is used Render_Mode is used here so we don't need EINA_UNUSED for it in the function. @fix Signed-off-by: Chris Michael <[email protected]> --- src/modules/evas/engines/software_x11/evas_xlib_swapbuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/evas/engines/software_x11/evas_xlib_swapbuf.c b/src/modules/evas/engines/software_x11/evas_xlib_swapbuf.c index 59a83d8..a956373 100644 --- a/src/modules/evas/engines/software_x11/evas_xlib_swapbuf.c +++ b/src/modules/evas/engines/software_x11/evas_xlib_swapbuf.c @@ -315,7 +315,7 @@ evas_software_xlib_swapbuf_free_region_for_update(Outbuf *buf EINA_UNUSED, RGBA_ } void -evas_software_xlib_swapbuf_flush(Outbuf *buf, Tilebuf_Rect *rects EINA_UNUSED, Evas_Render_Mode render_mode EINA_UNUSED) +evas_software_xlib_swapbuf_flush(Outbuf *buf, Tilebuf_Rect *rects EINA_UNUSED, Evas_Render_Mode render_mode) { if (render_mode == EVAS_RENDER_MODE_ASYNC_INIT) return; --
