From 7143457076d6469f76185a2f1d7071aca40a591e Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Thu, 17 Mar 2022 19:03:15 +0000 Subject: [PATCH] gdbusmethodinvocation: Drop redundant quote from warning message Signed-off-by: Philip Withnall Conflict:NA Reference:https://gitlab.gnome.org/GNOME/glib/-/commit/7143457076d6469f76185a2f1d7071aca40a591e --- gio/gdbusmethodinvocation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/gdbusmethodinvocation.c b/gio/gdbusmethodinvocation.c index 8e7abc83c4..705af079f4 100644 --- a/gio/gdbusmethodinvocation.c +++ b/gio/gdbusmethodinvocation.c @@ -413,7 +413,7 @@ g_dbus_method_invocation_return_value_internal (GDBusMethodInvocation *invocatio { gchar *type_string = g_variant_type_dup_string (type); - g_warning ("Type of return value is incorrect: expected '%s', got '%s''", + g_warning ("Type of return value is incorrect: expected '%s', got '%s'", type_string, g_variant_get_type_string (parameters)); g_variant_type_free (type); g_free (type_string); -- GitLab