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:
Victor Berger 2016-01-04 11:09:01 +01:00 committed by Bryce Harrington
parent 0a37511ecc
commit 693bf00083

View file

@ -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;
}