From 79f448958b5ea16bc6a1f91117ed02a889712c90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 28 Oct 2021 20:05:03 +0200 Subject: [PATCH] extensions-tool: Add missing newline Unlike g_warning() and friends, g_printerr() does not append a trailing newline. https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/4564 Part-of: --- subprojects/extensions-tool/src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/extensions-tool/src/main.c b/subprojects/extensions-tool/src/main.c index c33058dc6..c1e85dcf1 100644 --- a/subprojects/extensions-tool/src/main.c +++ b/subprojects/extensions-tool/src/main.c @@ -143,7 +143,7 @@ get_extension_property (GDBusProxy *proxy, &error); if (response == NULL) { - g_printerr (_("Failed to connect to GNOME Shell")); + g_printerr (_("Failed to connect to GNOME Shell\n")); return NULL; }