From: David von Oheimb Date: Thu, 10 May 2018 19:15:56 +0000 (+0200) Subject: add cast in test/x509aux.c preventing compiler warning for VC-WIN64A architecture X-Git-Tag: OpenSSL_1_1_1-pre8~18 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=8263e6cb98a1b0067c13250890e4933e390b59e6 add cast in test/x509aux.c preventing compiler warning for VC-WIN64A architecture Reviewed-by: Rich Salz Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/6217) --- diff --git a/test/x509aux.c b/test/x509aux.c index b66e1de71a..72e0082e01 100644 --- a/test/x509aux.c +++ b/test/x509aux.c @@ -161,6 +161,6 @@ int setup_tests(void) return 0; } - ADD_ALL_TESTS(test_certs, n); + ADD_ALL_TESTS(test_certs, (int)n); return 1; }