From 5e7f6cbe54e07d4fd896925fb1a0832e133e89a6 Mon Sep 17 00:00:00 2001 From: "Diego F. Aranha" Date: Sat, 20 Apr 2024 03:58:15 +0200 Subject: [PATCH] Minor fixes. --- src/low/x64-asm-6l/relic_bn_mul_low.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/low/x64-asm-6l/relic_bn_mul_low.c b/src/low/x64-asm-6l/relic_bn_mul_low.c index 75acca77d..2c8c26e29 100644 --- a/src/low/x64-asm-6l/relic_bn_mul_low.c +++ b/src/low/x64-asm-6l/relic_bn_mul_low.c @@ -52,9 +52,9 @@ void bn_muln_low(dig_t *c, const dig_t *a, const dig_t *b, size_t size) { mpn_mul_n(c, a, b, size); } -void bn_muld_low(dig_t *c, const dig_t *a, size_t sizea, const dig_t *b, size_t sizeb, - int low, int high) { +void bn_muld_low(dig_t *c, const dig_t *a, size_t sa, const dig_t *b, size_t sb, + uint_t low, uint_t high) { (void)low; (void)high; - mpn_mul(c, a, sizea, b, sizeb); + mpn_mul(c, a, sa, b, sb); }