Don't truncate if size_t is bigger than uint

This commit is contained in:
Neal Norwitz 2006-06-12 02:07:57 +00:00
parent 418b97eac1
commit 71e05f1e0c
1 changed files with 1 additions and 1 deletions

View File

@ -1232,7 +1232,7 @@ tok_get(register struct tok_state *tok, char **p_start, char **p_end)
do { do {
*tp++ = c = tok_nextc(tok); *tp++ = c = tok_nextc(tok);
} while (c != EOF && c != '\n' && } while (c != EOF && c != '\n' &&
(unsigned int)(tp - cbuf + 1) < sizeof(cbuf)); (size_t)(tp - cbuf + 1) < sizeof(cbuf));
*tp = '\0'; *tp = '\0';
for (cp = tabforms; for (cp = tabforms;
cp < tabforms + sizeof(tabforms)/sizeof(tabforms[0]); cp < tabforms + sizeof(tabforms)/sizeof(tabforms[0]);