From fdf87fe152474d69654ba53c39915fb0445da281 Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Fri, 4 Sep 2020 01:59:14 -0500 Subject: [PATCH] test.c: another missed spot. --- wolfcrypt/test/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/test/test.c b/wolfcrypt/test/test.c index e549cb40c..a221104b5 100644 --- a/wolfcrypt/test/test.c +++ b/wolfcrypt/test/test.c @@ -21623,7 +21623,7 @@ static int ecc_test_buffers(void) { ecc_key *cliKey = (ecc_key *)XMALLOC(sizeof *cliKey, HEAP_HINT, DYNAMIC_TYPE_TMP_BUFFER); ecc_key *servKey = (ecc_key *)XMALLOC(sizeof *servKey, HEAP_HINT, DYNAMIC_TYPE_TMP_BUFFER); #else - ecc_key cliKey_buf, *cliKey_buf = &cliKey_buf; + ecc_key cliKey_buf, *cliKey = &cliKey_buf; ecc_key servKey_buf, *servKey = &servKey_buf; #endif WC_RNG rng;