From: Daniel Stenberg Date: Sun, 5 Sep 2010 22:18:58 +0000 (+0200) Subject: warning: fix conversion to 'int' from 'size_t' X-Git-Tag: upstream/7.37.1~4766 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=62ef4652624cac5dac86f33f51fbf80c4dd9f063;p=platform%2Fupstream%2Fcurl.git warning: fix conversion to 'int' from 'size_t' --- diff --git a/lib/gopher.c b/lib/gopher.c index 5451b2d..aa9c45b 100644 --- a/lib/gopher.c +++ b/lib/gopher.c @@ -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;