diff options
author | Ben Greear <greearb@candelatech.com> | 2010-05-20 20:15:52 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-05-20 23:16:46 +0200 |
commit | 700335103e039a9f56adf24cfe95fb846caebe61 (patch) | |
tree | 06af1ed3d8b9e32ab141fed2977f128eca996f69 /lib/hmac.c | |
parent | 368fd5d27bf89a294d10b63bdacb9ecd7cf8c30d (diff) | |
download | curl-700335103e039a9f56adf24cfe95fb846caebe61.tar.gz |
Fix build warnings.
Signed-off-by: Ben Greear <greearb@candelatech.com>
Diffstat (limited to 'lib/hmac.c')
-rw-r--r-- | lib/hmac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hmac.c b/lib/hmac.c index 8fa224beb..f59397653 100644 --- a/lib/hmac.c +++ b/lib/hmac.c @@ -46,7 +46,7 @@ Curl_HMAC_init(const HMAC_params * hashparams, const unsigned char * key, unsigned int keylen) { - unsigned int i; + size_t i; HMAC_context * ctxt; unsigned char * hkey; unsigned char b; |