Use %u for uint

Signed-off-by: Daniel Martí <mvdan@mvdan.cc>
This commit is contained in:
mvdan@mvdan.cc 2015-04-22 15:07:59 +02:00 committed by Roberto E. Vargas Caballero
parent 7ab6c92e18
commit 3a5053f6c1
1 changed files with 1 additions and 1 deletions

2
st.c
View File

@ -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);