Commit 030e1f4f authored by Akihiro Sagawa's avatar Akihiro Sagawa Committed by Alexandre Julliard

winex11: Fix log message in process_events().

parent 1c73fcdb
......@@ -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;
}
......
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