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: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2013>
This commit is contained in:
Florian Müllner 2021-10-28 20:05:03 +02:00 committed by Marge Bot
parent bc32a52108
commit 79f448958b

View File

@ -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;
}