[Xfce4-commits] [panel-plugins/xfce4-verve-plugin] 01/01: pass a format string to silence a -Werror=format-security warning (#11505)
noreply at xfce.org
noreply at xfce.org
Thu Feb 5 17:57:24 CET 2015
This is an automated email from the git hooks/post-receive script.
landry pushed a commit to branch master
in repository panel-plugins/xfce4-verve-plugin.
commit 0f058b837feb5a2162a89c486b6b0e4d20be4bc7
Author: Landry Breuil <landry at xfce.org>
Date: Thu Feb 5 17:57:20 2015 +0100
pass a format string to silence a -Werror=format-security warning (#11505)
---
panel-plugin/verve-plugin.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list