From 0bcb30a9a010790f6258c890000765b17f539a46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20H=C3=B8gsberg?= Date: Thu, 9 Feb 2012 08:28:21 -0500 Subject: [PATCH] Drop warning when we receive an event for zombie objects Business as usual, but the message is confusing. --- src/wayland-client.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wayland-client.c b/src/wayland-client.c index bbfc035..7814379 100644 --- a/src/wayland-client.c +++ b/src/wayland-client.c @@ -465,7 +465,6 @@ handle_event(struct wl_display *display, proxy = wl_map_lookup(&display->objects, id); if (proxy == WL_ZOMBIE_OBJECT) { - fprintf(stderr, "Message to zombie object\n"); wl_connection_consume(display->connection, size); return; } else if (proxy == NULL || proxy->object.implementation == NULL) {