Fix an unsigned conversion error

This commit is contained in:
lostd 2015-02-17 19:03:51 +02:00
parent cc65e4098f
commit cdf8a429c5
1 changed files with 1 additions and 1 deletions

View File

@ -369,7 +369,7 @@ int
readmore(char **str)
{
int c, ret = 0;
size_t i;
int i;
char *ln = *str;
if (ln != NULL)