From: Rich Salz Date: Tue, 23 May 2017 13:24:12 +0000 (-0400) Subject: Fix va_arg all in test_error_c90 X-Git-Tag: OpenSSL_1_1_1-pre1~1449 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=dd5918775aeed51f8a666d151c5bd007e91bc534;hp=c49e0b04150e7cd8e8a92cd9f46be98422ce2fc8 Fix va_arg all in test_error_c90 Reviewed-by: Andy Polyakov (Merged from https://github.com/openssl/openssl/pull/3506) --- diff --git a/test/testutil/tests.c b/test/testutil/tests.c index 3f756911a4..a5538e7d9f 100644 --- a/test/testutil/tests.c +++ b/test/testutil/tests.c @@ -524,7 +524,7 @@ void test_error_c90(const char *desc, ...) va_list ap; va_start(ap, desc); - test_fail_message(NULL, NULL, -1, NULL, NULL, NULL, NULL, desc, ap); + test_fail_message_va(NULL, NULL, -1, NULL, NULL, NULL, NULL, desc, ap); va_end(ap); }