Commit 827a8059 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

typecast the assigment of an unsigned variable to a signed one to prevent

picky warnings
parent e23ba31e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -403,7 +403,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
                else {
                  /* this was all we read so its all a bad header */
                  k->badheader = HEADER_ALLBAD;
                  nread = rest_length;
                  nread = (ssize_t)rest_length;
                }
                break;
              }