From bc0a2c43e65003ca4a9a3c10fc768ec8ef63fb91 Mon Sep 17 00:00:00 2001 From: JacobBarthelmeh Date: Mon, 21 Oct 2024 10:04:26 -0600 Subject: [PATCH] avoid warning for unused parameter with certain build configurations --- wolfcrypt/src/asn.c | 1 + 1 file changed, 1 insertion(+) diff --git a/wolfcrypt/src/asn.c b/wolfcrypt/src/asn.c index 1a4ce95186..9cad859e52 100644 --- a/wolfcrypt/src/asn.c +++ b/wolfcrypt/src/asn.c @@ -7921,6 +7921,7 @@ int wc_CheckPrivateKey(const byte* privKey, word32 privKeySz, ret = 0; } (void)ks; + (void)heap; return ret; }