winex11: Use proper return type for process_events().

Signed-off-by: Akihiro Sagawa <sagawa.aki@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Akihiro Sagawa 2016-08-28 23:30:43 +09:00 committed by Alexandre Julliard
parent 030e1f4f5f
commit 876d5de0b4
1 changed files with 1 additions and 1 deletions

View File

@ -405,7 +405,7 @@ static inline BOOL call_event_handler( Display *display, XEvent *event )
/***********************************************************************
* process_events
*/
static int process_events( Display *display, Bool (*filter)(Display*, XEvent*,XPointer), ULONG_PTR arg )
static BOOL process_events( Display *display, Bool (*filter)(Display*, XEvent*,XPointer), ULONG_PTR arg )
{
XEvent event, prev_event;
int count = 0;