diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-03-08 12:37:11 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-08 12:37:11 +0000 |
commit | 385086b460b881f28d06e8863f9f04b52193cae7 (patch) | |
tree | f6f5b80e8e43f885bd7ac08ae68f394fcdd49a03 /lib/http_digest.c | |
parent | 72a4715dffde2b8c8e6a4392951f1b909c959568 (diff) |
size_t/int fix
Diffstat (limited to 'lib/http_digest.c')
-rw-r--r-- | lib/http_digest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http_digest.c b/lib/http_digest.c index 3a0cd912c..29da90a13 100644 --- a/lib/http_digest.c +++ b/lib/http_digest.c @@ -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++; |