Skip to content

Commit

Permalink
Fix build error.
Browse files Browse the repository at this point in the history
  • Loading branch information
dfaranha committed Aug 12, 2024
1 parent 8b7786f commit ef64ae7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/low/x64-asm-8l/relic_bn_mul_low.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ void bn_muld_low(dig_t *c, const dig_t *a, size_t sa, const dig_t *b, size_t sb,
int low, int high) {
(void)low;
(void)high;
mpn_mul(c, a, sizea, b, sizeb);
mpn_mul(c, a, sa, b, sb);
}

0 comments on commit ef64ae7

Please sign in to comment.