From 88c6ca12c2d13744adc91179fdeb17446f57f15e Mon Sep 17 00:00:00 2001 From: J08nY Date: Thu, 2 Oct 2025 17:31:55 +0200 Subject: Fix emulator test. --- pyecsca/codegen/bn/bn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pyecsca/codegen') diff --git a/pyecsca/codegen/bn/bn.c b/pyecsca/codegen/bn/bn.c index 8805b69..d7a44b6 100644 --- a/pyecsca/codegen/bn/bn.c +++ b/pyecsca/codegen/bn/bn.c @@ -806,7 +806,7 @@ int32_t bn_booth_word(int32_t digit, int32_t w) { } } -booth_t *bn_booth(const bn_t *bn, int w, size_t bits) { +booth_t *bn_booth(const bn_t *bn, int32_t w, size_t bits) { if (w >= 30) { return NULL; } -- cgit v1.3.1