Skip to content

Commit

Permalink
Fix type mistmatch.
Browse files Browse the repository at this point in the history
  • Loading branch information
dfaranha committed Feb 13, 2024
1 parent 16f8a99 commit c2e0af7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/epx/relic_ep8_mul.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ void ep8_mul_basic(ep8_t r, const ep8_t p, const bn_t k) {
if (bn_bits(k) <= RLC_DIG) {
ep8_mul_dig(r, p, k->dp[0]);
if (bn_sign(k) == RLC_NEG) {
ep_neg(r, r);
ep8_neg(r, r);
}
RLC_FREE(naf);
return;
Expand Down

0 comments on commit c2e0af7

Please sign in to comment.