mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-03-22 14:39:24 -05:00
Add a missing const
Dummy version of 'aes_setup_ni` function (for compilers that do not support AES extenstions) must have same signature as actual function
This commit is contained in:
parent
2611e69983
commit
f4ca28a0f4
2
sshaes.c
2
sshaes.c
@ -1707,7 +1707,7 @@ static void aes_setup_ni(AESContext * ctx,
|
|||||||
|
|
||||||
#else /* COMPILER_SUPPORTS_AES_NI */
|
#else /* COMPILER_SUPPORTS_AES_NI */
|
||||||
|
|
||||||
static void aes_setup_ni(AESContext * ctx, unsigned char *key, int keylen)
|
static void aes_setup_ni(AESContext * ctx, const unsigned char *key, int keylen)
|
||||||
{
|
{
|
||||||
assert(0);
|
assert(0);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user