diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2017-01-11 08:13:48 +0100 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2017-01-11 08:13:48 +0100 |
commit | 53f474c05e03daa4846497a79ab727782f2f006a (patch) | |
tree | e360be2fc438deaf3298e905938c812f59e31e0a | |
parent | 662945360e5514c67788e7b12bdae12a40fe39c7 (diff) | |
download | desktop-tools-53f474c05e03daa4846497a79ab727782f2f006a.tar.gz desktop-tools-53f474c05e03daa4846497a79ab727782f2f006a.tar.xz desktop-tools-53f474c05e03daa4846497a79ab727782f2f006a.zip |
wmstatus: errors must go to stderr
-rw-r--r-- | wmstatus.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |