Akihiro Sagawa : winex11: Fix log message in process_events().

Alexandre Julliard julliard at winehq.org
Mon Aug 29 11:07:22 CDT 2016


Module: wine
Branch: master
Commit: 030e1f4f5f8d28a9ba77e7a929c3b43ad8420d45
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=030e1f4f5f8d28a9ba77e7a929c3b43ad8420d45

Author: Akihiro Sagawa <sagawa.aki at gmail.com>
Date:   Sun Aug 28 23:30:41 2016 +0900

winex11: Fix log message in process_events().

Signed-off-by: Akihiro Sagawa <sagawa.aki at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/winex11.drv/event.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/winex11.drv/event.c b/dlls/winex11.drv/event.c
index d81ff2e..94b70f7 100644
--- a/dlls/winex11.drv/event.c
+++ b/dlls/winex11.drv/event.c
@@ -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;
 }
 




More information about the wine-cvs mailing list