diff options
author | David von Oheimb <David.von.Oheimb@siemens.com> | 2018-05-10 21:15:56 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2018-06-18 11:45:35 +0200 |
commit | 8263e6cb98a1b0067c13250890e4933e390b59e6 (patch) | |
tree | 7928d13be4830015b28a7e315ef5200462e483f1 /test/x509aux.c | |
parent | add 'unsupported cipher mode' diagnostics to evp_lib.c and genpkey.c (diff) | |
download | openssl-8263e6cb98a1b0067c13250890e4933e390b59e6.tar.xz openssl-8263e6cb98a1b0067c13250890e4933e390b59e6.zip |
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)
Diffstat (limited to 'test/x509aux.c')
-rw-r--r-- | test/x509aux.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |