mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
aesni(4): Fix trivial type typo
This fixes the kernel build with xtoolchain-gcc (6.4.0). X-MFC-With: r348268
This commit is contained in:
parent
9ecc02ea86
commit
6fe286ed83
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@
|
|||
static inline __m128i
|
||||
xor_and_encrypt(__m128i a, __m128i b, const unsigned char *k, int nr)
|
||||
{
|
||||
__m128 retval = _mm_xor_si128(a, b);
|
||||
__m128i retval = _mm_xor_si128(a, b);
|
||||
|
||||
retval = AESNI_ENC(retval, k, nr);
|
||||
return (retval);
|
||||
|
|
|
|||
Loading…
Reference in a new issue