From 3203ad4e89d4d37efa382a52d8c3c28a97fcd245 Mon Sep 17 00:00:00 2001 From: jsteube Date: Sat, 1 Oct 2016 14:06:47 +0200 Subject: [PATCH] Fixed win8phone_t type in interface.c --- src/interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interface.c b/src/interface.c index 4d846123f..3bc75efde 100644 --- a/src/interface.c +++ b/src/interface.c @@ -12800,7 +12800,7 @@ int win8phone_parse_hash (char *input_buf, uint input_len, hash_t *hash_buf, con salt_t *salt = hash_buf->salt; - win8phone_t *esalt = hash_buf->esalt; + win8phone_t *esalt = (win8phone_t *) hash_buf->esalt; digest[0] = hex_to_u32 ((const u8 *) &input_buf[ 0]); digest[1] = hex_to_u32 ((const u8 *) &input_buf[ 8]);