summaryrefslogtreecommitdiffstats
path: root/src
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 /src
parentwayland-util.h: Avoid un-namespaced _container_of (diff)
downloadwayland-0bcb30a9a010790f6258c890000765b17f539a46.tar
wayland-0bcb30a9a010790f6258c890000765b17f539a46.tar.gz
wayland-0bcb30a9a010790f6258c890000765b17f539a46.tar.bz2
wayland-0bcb30a9a010790f6258c890000765b17f539a46.tar.lz
wayland-0bcb30a9a010790f6258c890000765b17f539a46.tar.xz
wayland-0bcb30a9a010790f6258c890000765b17f539a46.tar.zst
wayland-0bcb30a9a010790f6258c890000765b17f539a46.zip
Drop warning when we receive an event for zombie objects
Business as usual, but the message is confusing.
Diffstat (limited to 'src')
-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) {