mirror of
https://github.com/alrayyes/st
synced 2023-11-14 15:56:30 +00:00
Use %u for uint
Signed-off-by: Daniel Martí <mvdan@mvdan.cc>
This commit is contained in:
parent
7ab6c92e18
commit
3a5053f6c1
2
st.c
2
st.c
@ -1744,7 +1744,7 @@ tdefcolor(int *attr, int *npar, int l) {
|
||||
b = attr[*npar + 4];
|
||||
*npar += 4;
|
||||
if(!BETWEEN(r, 0, 255) || !BETWEEN(g, 0, 255) || !BETWEEN(b, 0, 255))
|
||||
fprintf(stderr, "erresc: bad rgb color (%d,%d,%d)\n",
|
||||
fprintf(stderr, "erresc: bad rgb color (%u,%u,%u)\n",
|
||||
r, g, b);
|
||||
else
|
||||
idx = TRUECOLOR(r, g, b);
|
||||
|
Loading…
Reference in New Issue
Block a user