mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
warning: fix conversion to 'int' from 'size_t'
This commit is contained in:
parent
c6fa1952a1
commit
62ef465262
@ -134,7 +134,8 @@ static CURLcode gopher_do(struct connectdata *conn, bool *done)
|
||||
sel = (char *)"";
|
||||
else {
|
||||
char *newp;
|
||||
int i, j, len;
|
||||
size_t j, i;
|
||||
int len;
|
||||
|
||||
/* Otherwise, drop / and the first character (i.e., item type) ... */
|
||||
newp = path;
|
||||
|
Loading…
Reference in New Issue
Block a user