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