mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-02 09:01:39 -05:00
client: Add missing arg in a wl_log invocation
Without this 'proxy' argument, the '%p' formatter prints a constant garbage value. Signed-off-by: Victor Berger <victor.berger@m4x.org> Reviewed-by: Marek Chalupa <mchqwerty@gmail.com>
This commit is contained in:
parent
0a37511ecc
commit
693bf00083
1 changed files with 1 additions and 1 deletions
|
|
@ -511,7 +511,7 @@ wl_proxy_add_dispatcher(struct wl_proxy *proxy,
|
|||
const void *implementation, void *data)
|
||||
{
|
||||
if (proxy->object.implementation || proxy->dispatcher) {
|
||||
wl_log("proxy %p already has listener\n");
|
||||
wl_log("proxy %p already has listener\n", proxy);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue