Blob Blame History Raw
From 0f058b837feb5a2162a89c486b6b0e4d20be4bc7 Mon Sep 17 00:00:00 2001
From: Landry Breuil <landry@xfce.org>
Date: Thu, 5 Feb 2015 17:57:20 +0100
Subject: pass a format string to silence a -Werror=format-security warning
 (#11505)


diff --git a/panel-plugin/verve-plugin.c b/panel-plugin/verve-plugin.c
index 4b91056..13be53e 100644
--- a/panel-plugin/verve-plugin.c
+++ b/panel-plugin/verve-plugin.c
@@ -412,7 +412,7 @@ verve_plugin_keypress_cb (GtkWidget   *entry,
             gchar *msg = g_strconcat (_("Could not execute command:"), " ", command, NULL);
 
             /* Display error message dialog */
-            xfce_dialog_show_error (NULL, NULL, msg);
+            xfce_dialog_show_error (NULL, NULL, "%s", msg);
 
             /* Free message */
             g_free (msg);
-- 
cgit v0.10.1