Drop warning when we receive an event for zombie objects
authorKristian Høgsberg <krh@bitplanet.net>
Thu, 9 Feb 2012 13:28:21 +0000 (08:28 -0500)
committerKristian Høgsberg <krh@bitplanet.net>
Thu, 9 Feb 2012 13:28:52 +0000 (08:28 -0500)
Business as usual, but the message is confusing.

src/wayland-client.c

index bbfc035..7814379 100644 (file)
@@ -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) {