Commit 385086b4 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

size_t/int fix

parent 72a4715d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@ CURLdigest Curl_input_digest(struct connectdata *conn,
    while(more) {
      char value[32];
      char content[128];
      int totlen=0;
      size_t totlen=0;

      while(*header && isspace((int)*header))
        header++;