Module: Demos Branch: master Commit: 44cc5d131c87aa2a1651dbf21a558774cbffd64d URL: http://cgit.freedesktop.org/mesa/demos/commit/?id=44cc5d131c87aa2a1651dbf21a558774cbffd64d
Author: Jose Fonseca <jfonseca@hera> Date: Thu Nov 24 21:42:03 2011 +0000 vg/trivial: Fix prototypes. --- src/egl/openvg/trivial/eglcommon.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/egl/openvg/trivial/eglcommon.h b/src/egl/openvg/trivial/eglcommon.h index eec0e42..b856ec8 100644 --- a/src/egl/openvg/trivial/eglcommon.h +++ b/src/egl/openvg/trivial/eglcommon.h @@ -1,9 +1,9 @@ #ifndef EGLCOMMON_H #define EGLCOMMON_H -typedef void (*init_func)(); +typedef void (*init_func)(void); typedef void (*reshape_func)(int, int); -typedef void (*draw_func)(); +typedef void (*draw_func)(void); typedef int (*key_func)(unsigned key); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
