util.hashes: Silence compiler warning about pointer signedness

This commit is contained in:
Kim Alvefur 2013-08-09 16:03:17 +02:00
parent a316833b30
commit a6f6a0568f

View file

@ -79,7 +79,7 @@ static void hmac(struct hash_desc *desc, const char *key, size_t key_len,
};
int i;
char hashedKey[64]; /* Maximum used digest length */
unsigned char hashedKey[64]; /* Maximum used digest length */
union xory k_ipad, k_opad;
if (key_len > 64) {