summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorBernd Edlinger <bernd.edlinger@hotmail.de>2019-07-29 12:26:06 +0200
committerBernd Edlinger <bernd.edlinger@hotmail.de>2019-07-30 20:41:30 +0200
commit35f6fe7ac4fbde98d4fd6af968dfe320011bbe1e (patch)
treee15f9e5c7bdc695715e6917821700889f54404d3 /crypto
parent62cc845fc955c8d4de7b703f57bfd8e5854f00f4 (diff)
Fix BIO_printf format warnings
[extended tests] Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/9479)
Diffstat (limited to 'crypto')
-rw-r--r--crypto/x509/pcy_tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509/pcy_tree.c b/crypto/x509/pcy_tree.c
index 0c5887c25a..5d4c6bd839 100644
--- a/crypto/x509/pcy_tree.c
+++ b/crypto/x509/pcy_tree.c
@@ -49,7 +49,7 @@ static void tree_print(BIO *channel,
curr++;
BIO_printf(channel, "Level print after %s\n", str);
- BIO_printf(channel, "Printing Up to Level %ld\n",
+ BIO_printf(channel, "Printing Up to Level %zd\n",
curr - tree->levels);
for (plev = tree->levels; plev != curr; plev++) {
int i;