Use %u for uint - st - Personal fork of st
 (HTM) git clone git://git.drkhsh.at/st.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 3a5053f6c19195df5fde84a7e5eb3217443bb9ab
 (DIR) parent 7ab6c92e18d468968811256e808b02309c160a22
 (HTM) Author: mvdan@mvdan.cc <mvdan@mvdan.cc>
       Date:   Wed, 22 Apr 2015 15:07:59 +0200
       
       Use %u for uint
       
       Signed-off-by: Daniel Martí <mvdan@mvdan.cc>
       
       Diffstat:
         M st.c                                |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/st.c b/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);