From c28e981b9b48dc7d403f7a8481df6c7a1458620d Mon Sep 17 00:00:00 2001 From: Takashi Kojo Date: Tue, 4 Sep 2018 05:42:23 +0900 Subject: [PATCH] avoid shadow --- tests/api.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/api.c b/tests/api.c index 0b315d085..8308e6ed1 100644 --- a/tests/api.c +++ b/tests/api.c @@ -18990,9 +18990,9 @@ static void test_wolfSSL_d2i_PrivateKeys_bio(void) WOLFSSL_CTX* ctx; #if defined(WOLFSSL_KEY_GEN) - unsigned char buffer[4096]; + unsigned char buff[4096]; unsigned char* bufPtr; - bufPtr = buffer; + bufPtr = buff; #endif printf(testingFmt, "wolfSSL_d2i_PrivateKeys_bio()");