aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2017-03-28 17:04:43 +0200
committerRichard Levitte <levitte@openssl.org>2017-03-29 16:16:25 +0200
commit1bcf7d45c63321f4efd354782be8924d688b0757 (patch)
treeba6a055e97ddf9af830a9a53615383fc6eeefbc2
parent1e53a9fd1ad1260274065c12d0e9efbabb7d94e1 (diff)
downloadopenssl-1bcf7d45c63321f4efd354782be8924d688b0757.tar.gz
Use the z modifier instead of OSSLzu with BIO_printf
Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3064)
-rw-r--r--test/siphash_internal_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/siphash_internal_test.c b/test/siphash_internal_test.c
index 46b4660b39..eee4736285 100644
--- a/test/siphash_internal_test.c
+++ b/test/siphash_internal_test.c
@@ -321,7 +321,7 @@ static int test_siphash(int idx)
}
if (memcmp(out, expected, expectedlen) != 0) {
- BIO_printf(b_stderr, "SipHash test #%d/%" OSSLzu "+%" OSSLzu " failed.\n",
+ BIO_printf(b_stderr, "SipHash test #%d/%zu+%zu failed.\n",
idx, half, inlen-half);
hex_out(b_stderr, "got: ", 16, out, expectedlen);
hex_out(b_stderr, "expected: ", 16, expected, expectedlen);