mirror of
https://github.com/moparisthebest/curl
synced 2025-03-11 07:39:50 -04: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 *)"";
|
sel = (char *)"";
|
||||||
else {
|
else {
|
||||||
char *newp;
|
char *newp;
|
||||||
int i, j, len;
|
size_t j, i;
|
||||||
|
int len;
|
||||||
|
|
||||||
/* Otherwise, drop / and the first character (i.e., item type) ... */
|
/* Otherwise, drop / and the first character (i.e., item type) ... */
|
||||||
newp = path;
|
newp = path;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user