summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@bitplanet.net>2012-02-09 08:28:21 -0500
committerKristian Høgsberg <krh@bitplanet.net>2012-02-09 08:28:52 -0500
commit0bcb30a9a010790f6258c890000765b17f539a46 (patch)
treeff4f1243144229f7ec37fd2cc351bc5161095c2c
parentfa525622e33216207b6bba6ef5b4c434d565e4d1 (diff)
Drop warning when we receive an event for zombie objects
Business as usual, but the message is confusing.
-rw-r--r--src/wayland-client.c1
1 files changed, 0 insertions, 1 deletions
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) {