From fd7ffc992ffca5dc0de409636d4d84a0b09ee179 Mon Sep 17 00:00:00 2001 From: Jacob Barthelmeh Date: Wed, 21 Feb 2018 11:19:49 -0700 Subject: [PATCH] fix for unused variables --- tests/api.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/api.c b/tests/api.c index 0c749a1ef..fb6bb62a2 100644 --- a/tests/api.c +++ b/tests/api.c @@ -2800,6 +2800,10 @@ static void test_wolfSSL_PKCS12(void) sk_X509_free(ca); #endif /* HAVE_ECC */ + (void)x509; + (void)subject; + (void)order; + printf(resultFmt, passed); #endif /* OPENSSL_EXTRA */ }