Diff between 6e0cfbe2643324f6fa3f225eb6014661578a1ad1 and ee3b0b2b3326e883790685e51ebb0c9a9f8332c9
Changed Files
| File | Additions | Deletions | Status |
| gdbus/object.c | +2 | -2 | modified |
Full Patch
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;
}