mirror of
https://github.com/curl/curl.git
synced 2026-07-24 02:07:17 +03:00
don't mix int and size_t, it generates warnings!
This commit is contained in:
parent
85af357d81
commit
a054e5baf3
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue