Skip to content

Commit

Permalink
fix debian sid compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
majestrate committed Oct 13, 2021
1 parent e11a94c commit 07fb41c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/libntrup/src/avx/mult.c
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ mult96x8_float(__m256 h[192], const __m256 f[96], const __m256 g[96])
/* 96*(16*int8 stored in 32*int8) g inputs between -8 and 8 */
/* 192*16*int16 h outputs between -2400 and 2400 */
static void
mult96x16(__m256i h[192], const __m256i f[96], const __m256i g[96])
mult96x16(__m256i * h, const __m256i * f, const __m256i * g)
{
__m256 hfloat[192];
__m256 gfloat[96];
Expand Down

0 comments on commit 07fb41c

Please sign in to comment.