Correct a type in scram.c

This commit is contained in:
Tristan Le Guern
2015-09-25 22:06:19 +02:00
committed by Dmitry Podgorny
parent ed5f982312
commit 0e8d407f93

View File

@@ -81,7 +81,8 @@ static void SCRAM_SHA1_Hi(const uint8_t *text, size_t len,
const uint8_t *salt, size_t salt_len, uint32_t i,
uint8_t *digest)
{
int j, k;
int k;
uint32_t j;
uint8_t tmp[128];
static uint8_t int1[] = {0x0, 0x0, 0x0, 0x1};