Commit 62ef4652 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

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

parent c6fa1952
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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;