diff options
author | Michael Stapelberg <michael@stapelberg.de> | 2012-03-25 22:07:43 +0200 |
---|---|---|
committer | Michael Stapelberg <michael@stapelberg.de> | 2012-03-25 22:07:43 +0200 |
commit | 0686906b892aba4df014d440c313610bfac513e0 (patch) | |
tree | e8082dce005b6365d2afb29350e237af91200b15 /include/i3status.h | |
parent | 12b1bfa9b8485de88b0bda82821c021aee197673 (diff) |
use printf instead of write to not mix two ways of outputting data
Otherwise, the separator is not properly interleaved with output.
Diffstat (limited to 'include/i3status.h')
-rw-r--r-- | include/i3status.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/i3status.h b/include/i3status.h index 4ec0ce4..4311054 100644 --- a/include/i3status.h +++ b/include/i3status.h @@ -61,7 +61,7 @@ enum { O_DZEN2, O_XMOBAR, O_I3BAR, O_NONE } output_format; yajl_gen_string(json_gen, (const unsigned char *)"full_text", strlen("full_text")); \ yajl_gen_string(json_gen, (const unsigned char *)text, strlen(text)); \ } else { \ - write(STDOUT_FILENO, text, strlen(text)); \ + printf("%s", text); \ } \ } while (0) |