From 35443daed49389184e07ee21b7daa3273f312f91 Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Wed, 22 Jul 2020 23:22:20 +0200 Subject: [PATCH] Remove unused i18n translation All the g_printerr does is printing the message of the GError with a newline at the end. Hence, use a simple format string without the need to translate it. Signed-off-by: Pino Toscano --- src/virt-viewer-app.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/virt-viewer-app.c b/src/virt-viewer-app.c index 405628c..c0e0c9c 100644 --- a/src/virt-viewer-app.c +++ b/src/virt-viewer-app.c @@ -2174,7 +2174,7 @@ virt_viewer_app_local_command_line (GApplication *gapp, if (!g_option_context_parse_strv(context, args, &error)) { if (error != NULL) { - g_printerr(_("%s\n"), error->message); + g_printerr("%s\n", error->message); g_error_free(error); }