From f1725b496224f8b87aa8e08e1f7b57abca365343 Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Mon, 16 Oct 2023 18:23:45 -0500 Subject: [PATCH] fix to 3e9f8bc649: `(void)h` was a typo for correct `(void)n`. --- wolfcrypt/src/eccsi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/wolfcrypt/src/eccsi.c b/wolfcrypt/src/eccsi.c index cf39d56bf..836243bed 100644 --- a/wolfcrypt/src/eccsi.c +++ b/wolfcrypt/src/eccsi.c @@ -1376,6 +1376,7 @@ static int eccsi_mulmod_base_add(EccsiKey* key, const mp_int* n, err = NOT_COMPILED_IN; } (void)key; + (void)n; (void)a; (void)res; (void)mp;