Windows Bootloader: fix compilation error following Twofish code changes.

This commit is contained in:
Mounir IDRASSI 2016-12-07 00:26:33 +01:00
parent e3af024e5b
commit f10e26fc89
No known key found for this signature in database
GPG Key ID: DD0C382D5FCFB8FC
1 changed files with 1 additions and 3 deletions

View File

@ -949,7 +949,7 @@ static u4byte mds_rem(u4byte p0, u4byte p1)
/* initialise the key schedule from the user supplied key */
u4byte *twofish_set_key(TwofishInstance *instance, const u4byte in_key[])
void twofish_set_key(TwofishInstance *instance, const u4byte in_key[])
{ u4byte i, a, b, me_key[4], mo_key[4];
u4byte *l_key, *s_key;
@ -990,8 +990,6 @@ u4byte *twofish_set_key(TwofishInstance *instance, const u4byte in_key[])
#ifdef MK_TABLE
gen_mk_tab(instance, s_key);
#endif
return l_key;
};
#endif