winex11: Fix log message in 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:41 +09:00 committed by Alexandre Julliard
parent 1c73fcdbcb
commit 030e1f4f5f
1 changed files with 1 additions and 1 deletions

View File

@ -468,7 +468,7 @@ static int process_events( Display *display, Bool (*filter)(Display*, XEvent*,XP
if (prev_event.type) queued |= call_event_handler( display, &prev_event );
free_event_data( &prev_event );
XFlush( gdi_display );
if (count) TRACE( "%s %d events\n", queued ? "processed" : "ignored", count );
if (count) TRACE( "processed %d events, returning %d\n", count, queued );
return queued;
}