Commit 876d5de0 authored by Akihiro Sagawa's avatar Akihiro Sagawa Committed by Alexandre Julliard

winex11: Use proper return type for process_events().

parent 030e1f4f
...@@ -405,7 +405,7 @@ static inline BOOL call_event_handler( Display *display, XEvent *event ) ...@@ -405,7 +405,7 @@ static inline BOOL call_event_handler( Display *display, XEvent *event )
/*********************************************************************** /***********************************************************************
* process_events * 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; XEvent event, prev_event;
int count = 0; int count = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment