aboutsummaryrefslogtreecommitdiff
path: root/lib/hmac.c
diff options
context:
space:
mode:
authorBen Greear <greearb@candelatech.com>2010-05-20 20:15:52 +0200
committerDaniel Stenberg <daniel@haxx.se>2010-05-20 23:16:46 +0200
commit700335103e039a9f56adf24cfe95fb846caebe61 (patch)
tree06af1ed3d8b9e32ab141fed2977f128eca996f69 /lib/hmac.c
parent368fd5d27bf89a294d10b63bdacb9ecd7cf8c30d (diff)
Fix build warnings.
Signed-off-by: Ben Greear <greearb@candelatech.com>
Diffstat (limited to 'lib/hmac.c')
-rw-r--r--lib/hmac.c2
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;