From 9cb6243357f990f43db3e49e0c21c8134b7508ff Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Tue, 7 Nov 2023 19:33:18 -0600 Subject: [PATCH] wolfcrypt/test/test.c: add all initializers in wolfcrypt_test_main() for args for C++ legality (C-style initializer added in e58fafcf3d). --- 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 362c5dcb8..b6c9fd79a 100644 --- a/wolfcrypt/test/test.c +++ b/wolfcrypt/test/test.c @@ -1921,7 +1921,7 @@ options: [-s max_relative_stack_bytes] [-m max_relative_heap_memory_bytes]\n\ #endif { wc_test_ret_t ret; - func_args args = { 0 }; + func_args args = { 0, 0, 0 }; #if defined(WOLFSSL_ESPIDF) || defined(WOLFSSL_SE050) /* set dummy wallclock time. */ struct timeval utctime;