Drop noisy warning
This commit is contained in:
+3
-9
@@ -345,14 +345,10 @@ handle_event(struct wl_display *display,
|
|||||||
if (id == 1)
|
if (id == 1)
|
||||||
proxy = &display->proxy;
|
proxy = &display->proxy;
|
||||||
else
|
else
|
||||||
proxy = (struct wl_proxy *)
|
proxy = wl_hash_table_lookup(display->objects, id);
|
||||||
wl_hash_table_lookup(display->objects, id);
|
|
||||||
|
|
||||||
if (proxy != NULL) {
|
if (proxy == NULL)
|
||||||
if (wl_list_empty(&proxy->listener_list)) {
|
return;
|
||||||
printf("proxy found for object %d, opcode %d, but no listeners\n",
|
|
||||||
id, opcode);
|
|
||||||
}
|
|
||||||
|
|
||||||
wl_list_for_each(listener, &proxy->listener_list, link)
|
wl_list_for_each(listener, &proxy->listener_list, link)
|
||||||
wl_connection_demarshal(display->connection,
|
wl_connection_demarshal(display->connection,
|
||||||
@@ -363,8 +359,6 @@ handle_event(struct wl_display *display,
|
|||||||
&proxy->base,
|
&proxy->base,
|
||||||
&proxy->base.interface->events[opcode]);
|
&proxy->base.interface->events[opcode]);
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
wl_connection_consume(display->connection, size);
|
wl_connection_consume(display->connection, size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user