From dad73837f426f777bdaf5468debdc059df004856 Mon Sep 17 00:00:00 2001 From: John Safranek Date: Wed, 24 Mar 2021 17:48:48 -0700 Subject: [PATCH] Hushed compiler warnings about unused variables. --- wolfcrypt/src/ecc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wolfcrypt/src/ecc.c b/wolfcrypt/src/ecc.c index 3db6dc0fa..cbd0e3cf2 100644 --- a/wolfcrypt/src/ecc.c +++ b/wolfcrypt/src/ecc.c @@ -7895,6 +7895,8 @@ static int _ecc_validate_public_key(ecc_key* key, int partial, int priv) #endif /* WOLFSSL_ATECC508A */ return err; #else + (void)partial; + (void)priv; return WC_KEY_SIZE_E; #endif /* !WOLFSSL_SP_MATH */ }