This commit is contained in:
Benjamin Peterson 2013-02-20 16:56:06 -05:00
commit abe40c2528
2 changed files with 3 additions and 1 deletions

View file

@ -1763,7 +1763,7 @@ printone(FILE *out, const char* msg, size_t value)
k = 3;
do {
size_t nextvalue = value / 10;
uint digit = (uint)(value - nextvalue * 10);
unsigned int digit = (unsigned int)(value - nextvalue * 10);
value = nextvalue;
buf[i--] = (char)(digit + '0');
--k;