add cast in test/x509aux.c preventing compiler warning for VC-WIN64A architecture

Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6217)
This commit is contained in:
David von Oheimb 2018-05-10 21:15:56 +02:00 committed by Matt Caswell
parent 49c9c1b3d0
commit 8263e6cb98
1 changed files with 1 additions and 1 deletions

View File

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