From 5a1559a455ed91d3dda1980cf20b13c8ca7f6957 Mon Sep 17 00:00:00 2001 From: SooChan Lim Date: Thu, 1 Aug 2024 11:47:14 +0900 Subject: [PATCH] tempoary2: do not show the failed log when wl_display_read_events function has been failed. This patch is tempoary. It will be reveted later. Change-Id: I5891c7e2789cfde54157d6d74676bdb20d9552c6 --- src/wayland-client.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wayland-client.c b/src/wayland-client.c index 519edf1..7e6141b 100644 --- a/src/wayland-client.c +++ b/src/wayland-client.c @@ -2963,7 +2963,9 @@ display_dispatch_queue_ensure_flush(struct wl_display *display, } if (wl_display_read_events(display) == -1) { +#ifdef TEMP_SHOW_READ_FAIL_LOG // FIXME: This is temporary. remove this later wl_log("wl_display_read_events failed (display:%p)\n", display); +#endif return -1; } -- 2.7.4