From a291ae55b0833626b7207496cd6bc7ef864dc921 Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Fri, 27 Jan 2012 09:50:02 +0200 Subject: [PATCH] desktop-shell: print what failed on exec Signed-off-by: Pekka Paalanen --- clients/desktop-shell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/desktop-shell.c b/clients/desktop-shell.c index a6a6147..4848449 100644 --- a/clients/desktop-shell.c +++ b/clients/desktop-shell.c @@ -170,7 +170,7 @@ panel_launcher_activate(struct panel_launcher *widget) return; if (execl(widget->path, widget->path, NULL) < 0) { - fprintf(stderr, "execl failed: %m\n"); + fprintf(stderr, "execl '%s' failed: %m\n", widget->path); exit(1); } } -- 2.7.4