don't mix int and size_t, it generates warnings!

This commit is contained in:
Daniel Stenberg 2004-02-26 12:45:29 +00:00
parent 85af357d81
commit a054e5baf3

View File

@ -30,7 +30,7 @@
int ares__read_line(FILE *fp, char **buf, int *bufsize)
{
char *newbuf;
int offset = 0;
size_t offset = 0;
size_t len;
if (*buf == NULL)