Commit 9a9013ac authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

typecasted the argument to isspace() to int, to remove a pedantic compiler

warning
parent 59693250
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -455,7 +455,7 @@ CURLcode http(struct connectdata *conn)
        /* we require a colon for this to be a true header */

        ptr++; /* pass the colon */
        while(*ptr && isspace(*ptr))
        while(*ptr && isspace((int)*ptr))
          ptr++;

        if(*ptr) {