diff options
| author | Kirill Primak <vyivel@eclair.cafe> | 2025-05-28 21:40:17 +0300 |
|---|---|---|
| committer | Simon Ser <contact@emersion.fr> | 2025-06-08 20:55:02 +0200 |
| commit | 504dbf2303d0f7590effa2ec22e5a77ae89a6978 (patch) | |
| tree | 396cfb544fa680ec44780c06a8c05be0fd20c5a3 | |
| parent | connection: fix segfault in wl_closure_invoke() (diff) | |
| download | wayland-504dbf2303d0f7590effa2ec22e5a77ae89a6978.tar wayland-504dbf2303d0f7590effa2ec22e5a77ae89a6978.tar.gz wayland-504dbf2303d0f7590effa2ec22e5a77ae89a6978.tar.bz2 wayland-504dbf2303d0f7590effa2ec22e5a77ae89a6978.tar.lz wayland-504dbf2303d0f7590effa2ec22e5a77ae89a6978.tar.xz wayland-504dbf2303d0f7590effa2ec22e5a77ae89a6978.tar.zst wayland-504dbf2303d0f7590effa2ec22e5a77ae89a6978.zip | |
client: fix conversion specifier in the discarded event log message
Signed-off-by: Kirill Primak <vyivel@eclair.cafe>
(cherry picked from commit 6281ccbd3d98ef0a6503425e3e7d705e3075e265)
| -rw-r--r-- | src/wayland-client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wayland-client.c b/src/wayland-client.c index 25aa1cd..5c9ed71 100644 --- a/src/wayland-client.c +++ b/src/wayland-client.c @@ -1579,7 +1579,7 @@ queue_event(struct wl_display *display, int len) clock_gettime(CLOCK_REALTIME, &tp); time = (tp.tv_sec * 1000000L) + (tp.tv_nsec / 1000); - fprintf(stderr, "[%7u.%03u] discarded [%s]#%d.[event %d]" + fprintf(stderr, "[%7u.%03u] discarded [%s]#%u.[event %d]" "(%d fd, %d byte)\n", time / 1000, time % 1000, zombie ? "zombie" : "unknown", |
