aboutsummaryrefslogtreecommitdiffstats
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:33:41 -0700
commit82911b02e347f65fd8afb2dbc1852e0adf0f2701 (patch)
tree17db892db02f18b682f20685fef73f4517782b42
parent47852a87e7efbef32ad4c40390aaa1c79305a9ae (diff)
downloadmmsd-82911b02e347f65fd8afb2dbc1852e0adf0f2701.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;
}