warning: fix conversion to 'int' from 'size_t'

This commit is contained in:
Daniel Stenberg 2010-09-06 00:18:58 +02:00
parent c6fa1952a1
commit 62ef465262
1 changed files with 2 additions and 1 deletions

View File

@ -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;