Module: wine Branch: master Commit: 4c52a28e6b1dafa44067f335b7cd069cfda29963 URL: http://source.winehq.org/git/wine.git/?a=commit;h=4c52a28e6b1dafa44067f335b7...
Author: Alexandre Julliard julliard@winehq.org Date: Fri Oct 2 14:56:37 2009 +0200
winex11: Use explicit prototypes for function pointers.
---
dlls/winex11.drv/event.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/winex11.drv/event.c b/dlls/winex11.drv/event.c index 542fce8..956e4f1 100644 --- a/dlls/winex11.drv/event.c +++ b/dlls/winex11.drv/event.c @@ -323,7 +323,7 @@ static inline void call_event_handler( Display *display, XEvent *event ) /*********************************************************************** * process_events */ -static int process_events( Display *display, Bool (*filter)(), ULONG_PTR arg ) +static int process_events( Display *display, Bool (*filter)(Display*, XEvent*,XPointer), ULONG_PTR arg ) { XEvent event, prev_event; int count = 0;