summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaganath Kanakkassery <jaganath.k@samsung.com>2012-08-16 18:21:19 +0530
committerMarcel Holtmann <marcel@holtmann.org>2012-08-27 17:28:29 -0700
commit5c6e048be5538f6cb5d639d816a79f1c18b920e9 (patch)
treec40b2b2a945fd2ab417e54cef92f6ba78f0bb23d
parent4cea3a451d232fa9b64d14c6678ad91ff4e9ad5f (diff)
downloadpacrunner-5c6e048be5538f6cb5d639d816a79f1c18b920e9.tar.gz
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.
-rw-r--r--gdbus/object.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdbus/object.c b/gdbus/object.c
index 900e7ab..9689006 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;
}