From 4066daa7452d15d972208ca92e5b264a4b9b15ee Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Fri, 1 Jul 2016 18:51:54 +0200 Subject: [PATCH] Use PROGNAME --- src/desktop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/desktop.c b/src/desktop.c index a0a2e5c..0e2f828 100644 --- a/src/desktop.c +++ b/src/desktop.c @@ -2975,7 +2975,7 @@ static int _refresh_loop_lookup(Desktop * desktop, char const * name) /* error */ static int _error(char const * message, int ret) { - fputs("desktop: ", stderr); + fputs(PROGNAME ": ", stderr); perror(message); return ret; }