stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=e99dbd1dbb704b3ce039cd0f996d0d92a61f74ef
commit e99dbd1dbb704b3ce039cd0f996d0d92a61f74ef Author: Stefan Schmidt <ste...@osg.samsung.com> Date: Thu Nov 26 17:26:07 2015 +0100 evas gl_common: use void to force empty function parameters We have to use void in a function declaration if we want no function parameters. Using just empty parenthesis means the function takes an unspecified number of parameters. We had it correct for most declarations and this series fixes it for the rest. --- src/modules/evas/engines/gl_common/evas_gl_core.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/evas/engines/gl_common/evas_gl_core.h b/src/modules/evas/engines/gl_common/evas_gl_core.h index e1e6764..8083236 100644 --- a/src/modules/evas/engines/gl_common/evas_gl_core.h +++ b/src/modules/evas/engines/gl_common/evas_gl_core.h @@ -85,9 +85,9 @@ Eina_Bool evgl_native_surface_direct_opts_get(Evas_Native_Surface *ns, Eina_Bool *direct_override); void evgl_direct_partial_info_set(int pres); -void evgl_direct_partial_info_clear(); -void evgl_direct_partial_render_start(); -void evgl_direct_partial_render_end(); +void evgl_direct_partial_info_clear(void); +void evgl_direct_partial_render_start(void); +void evgl_direct_partial_render_end(void); #undef EAPI #define EAPI --