From 693bf00083c372de4da785810429498d215d0c85 Mon Sep 17 00:00:00 2001 From: Victor Berger Date: Mon, 4 Jan 2016 11:09:01 +0100 Subject: [PATCH] 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 Reviewed-by: Marek Chalupa --- src/wayland-client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wayland-client.c b/src/wayland-client.c index 27960309..15eba6e4 100644 --- a/src/wayland-client.c +++ b/src/wayland-client.c @@ -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; }