From 8562034e30e8b319a746009859cbefc1f41b41f5 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sun, 2 Mar 2008 15:28:22 -0500 Subject: [PATCH] glib already prints a verbose error message when execute fails. don't add a second level of useless verbosity to that --- openbox/actions/execute.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openbox/actions/execute.c b/openbox/actions/execute.c index eb1b461..f87fe00 100644 --- a/openbox/actions/execute.c +++ b/openbox/actions/execute.c @@ -143,7 +143,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(_("Failed to execute \"%s\": %s"), o->cmd, e->message); + g_message(e->message, o->cmd); g_error_free(e); } else { @@ -162,7 +162,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(_("Failed to execute \"%s\": %s"), o->cmd, e->message); + g_message(e->message, o->cmd); g_error_free(e); if (o->sn) -- 1.9.1