diff options
author | nicm <nicm> | 2015-03-31 17:45:10 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-03-31 17:45:10 +0000 |
commit | 02df86079b1f3155313ebb6f891cf6cf593d3ad9 (patch) | |
tree | e7ae66647bb6a838166789e3525cff8dcc755f28 /colour.c | |
parent | cd9ccbc1e98b48fd8bfb64356664313a8eb1f7b0 (diff) | |
download | rtmux-02df86079b1f3155313ebb6f891cf6cf593d3ad9.tar.gz rtmux-02df86079b1f3155313ebb6f891cf6cf593d3ad9.tar.bz2 rtmux-02df86079b1f3155313ebb6f891cf6cf593d3ad9.zip |
Fix some format specifier nits, from Ben Boeckel.
Diffstat (limited to 'colour.c')
-rw-r--r-- | colour.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -147,7 +147,7 @@ colour_tostring(int c) static char s[32]; if (c & 0x100) { - xsnprintf(s, sizeof s, "colour%u", c & ~0x100); + xsnprintf(s, sizeof s, "colour%d", c & ~0x100); return (s); } |