From d40a1df675ff776b869c6e222d10219f5ebbe01d Mon Sep 17 00:00:00 2001 From: Jaganath Kanakkassery Date: Thu, 16 Aug 2012 18:21:19 +0530 Subject: gdbus: Fix compilation error if macro "error" is defined The variable "signature" used in error is not defined and "args" is now a struct instead of a string. --- gdbus/object.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdbus') diff --git a/gdbus/object.c b/gdbus/object.c index 900e7aba..96890064 100644 --- a/gdbus/object.c +++ b/gdbus/object.c @@ -645,8 +645,8 @@ static dbus_bool_t emit_signal_valist(DBusConnection *conn, goto fail; if (g_dbus_args_have_signature(args, signal) == FALSE) { - error("%s.%s: expected signature'%s' but got '%s'", - interface, name, args, signature); + error("%s.%s: got unexpected signature '%s'", interface, name, + dbus_message_get_signature(signal)); ret = FALSE; goto fail; } -- cgit v1.2.3