summaryrefslogtreecommitdiff
path: root/test/x509aux.c
diff options
context:
space:
mode:
authorDavid von Oheimb <David.von.Oheimb@siemens.com>2018-05-10 21:15:56 +0200
committerMatt Caswell <matt@openssl.org>2018-06-18 10:45:35 +0100
commit8263e6cb98a1b0067c13250890e4933e390b59e6 (patch)
tree7928d13be4830015b28a7e315ef5200462e483f1 /test/x509aux.c
parent49c9c1b3d05782fe76bef2eef8c5224baf843240 (diff)
downloadopenssl-new-8263e6cb98a1b0067c13250890e4933e390b59e6.tar.gz
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.c2
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;
}