From: Mikael Magnusson Date: Sat, 24 Oct 2020 15:50:15 +0000 (+0200) Subject: Show the menu id instead of the failed command X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=449a5ff003ae73c16546740486db9d839b02d4d1;p=mikachu%2Fopenbox.git Show the menu id instead of the failed command --- diff --git a/openbox/menu.c b/openbox/menu.c index 8804e128..9001c8cb 100644 --- a/openbox/menu.c +++ b/openbox/menu.c @@ -166,7 +166,7 @@ void menu_pipe_execute(ObMenu *self) if (!g_spawn_command_line_sync(self->execute, &output, NULL, NULL, &err)) { g_message(_("Failed to execute command for pipe-menu \"%s\": %s"), - self->execute, err->message); + self->name, err->message); g_error_free(err); return; }