Fix va_arg all in test_error_c90

Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3506)
This commit is contained in:
Rich Salz 2017-05-23 09:24:12 -04:00
parent c49e0b0415
commit dd5918775a

View File

@ -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);
}