aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2017-01-11 08:13:48 +0100
committerPřemysl Janouch <p.janouch@gmail.com>2017-01-11 08:13:48 +0100
commit53f474c05e03daa4846497a79ab727782f2f006a (patch)
treee360be2fc438deaf3298e905938c812f59e31e0a
parent662945360e5514c67788e7b12bdae12a40fe39c7 (diff)
downloaddesktop-tools-53f474c05e03daa4846497a79ab727782f2f006a.tar.gz
desktop-tools-53f474c05e03daa4846497a79ab727782f2f006a.tar.xz
desktop-tools-53f474c05e03daa4846497a79ab727782f2f006a.zip
wmstatus: errors must go to stderr
-rw-r--r--wmstatus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wmstatus.c b/wmstatus.c
index 1a6aa7d..8c616d8 100644
--- a/wmstatus.c
+++ b/wmstatus.c
@@ -49,7 +49,7 @@ log_message_custom (void *user_data, const char *quote, const char *fmt,
va_list ap)
{
(void) user_data;
- FILE *stream = stdout;
+ FILE *stream = stderr;
fprintf (stream, PROGRAM_NAME ": ");
fputs (quote, stream);