From: Dana Jansens Date: Wed, 17 Feb 2010 16:44:12 +0000 (-0500) Subject: don't use a variable as a format string X-Git-Url: http://git.openbox.org/?p=mikachu%2Fopenbox.git;a=commitdiff_plain;h=1235d836d75aa8c4f7bd40929d84d2ca07768bab don't use a variable as a format string --- diff --git a/openbox/actions/execute.c b/openbox/actions/execute.c index 175b75a..29cd327 100644 --- a/openbox/actions/execute.c +++ b/openbox/actions/execute.c @@ -170,7 +170,7 @@ static gboolean run_func(ObActionsData *data, gpointer options) event_cancel_all_key_grabs(); if (!g_shell_parse_argv(cmd, NULL, &argv, &e)) { - g_message(e->message, o->cmd); + g_message("%s", e->message); g_error_free(e); } else { @@ -189,7 +189,7 @@ static gboolean run_func(ObActionsData *data, gpointer options) G_SPAWN_SEARCH_PATH | G_SPAWN_DO_NOT_REAP_CHILD, NULL, NULL, NULL, &e)) { - g_message(e->message, o->cmd); + g_message("%s", e->message); g_error_free(e); if (o->sn)