From ee4a41a6ea3f5b281b0e7cbd0c5cb4d945fc6026 Mon Sep 17 00:00:00 2001 From: tb <> Date: Fri, 10 Jun 2022 22:00:15 +0000 Subject: More %i vs %d cleanup --- src/regress/lib/libssl/client/clienttest.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/regress/lib/libssl/client/clienttest.c') diff --git a/src/regress/lib/libssl/client/clienttest.c b/src/regress/lib/libssl/client/clienttest.c index 754fe3ae6e..be508bcf50 100644 --- a/src/regress/lib/libssl/client/clienttest.c +++ b/src/regress/lib/libssl/client/clienttest.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clienttest.c,v 1.36 2021/11/20 16:32:55 tb Exp $ */ +/* $OpenBSD: clienttest.c,v 1.37 2022/06/10 22:00:15 tb Exp $ */ /* * Copyright (c) 2015 Joel Sing * @@ -628,7 +628,7 @@ client_hello_test(int testno, const struct client_hello_test *cht) int ret = 1; long len; - fprintf(stderr, "Test %i - %s\n", testno, cht->desc); + fprintf(stderr, "Test %d - %s\n", testno, cht->desc); /* Providing a small buf causes *_get_server_hello() to return. */ if ((rbio = BIO_new_mem_buf(rbuf, sizeof(rbuf))) == NULL) { @@ -668,7 +668,7 @@ client_hello_test(int testno, const struct client_hello_test *cht) errx(1, "failed to make client hello"); if ((size_t)len != client_hello_len) { - fprintf(stderr, "FAIL: test returned ClientHello length %li, " + fprintf(stderr, "FAIL: test returned ClientHello length %ld, " "want %zu\n", len, client_hello_len); fprintf(stderr, "received:\n"); hexdump(wbuf, len, NULL); -- cgit v1.2.3-55-g6feb