From: Richard Levitte Date: Tue, 28 Mar 2017 15:04:43 +0000 (+0200) Subject: Use the z modifier instead of OSSLzu with BIO_printf X-Git-Tag: OpenSSL_1_1_1-pre1~1907 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1bcf7d45c63321f4efd354782be8924d688b0757;p=oweals%2Fopenssl.git Use the z modifier instead of OSSLzu with BIO_printf Reviewed-by: Andy Polyakov (Merged from https://github.com/openssl/openssl/pull/3064) --- 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);