From 27c37b245fdefc4cd8c593e8a76d1c8ff4c4744c Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Tue, 7 Jan 2025 16:51:30 -0600 Subject: [PATCH] tests/api.c: in test_dtls12_basic_connection_id(), add cast to fix a -Wformat on size_t j when building -m32. --- tests/api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api.c b/tests/api.c index bf8da8cf10..0ad5c086cc 100644 --- a/tests/api.c +++ b/tests/api.c @@ -99282,7 +99282,7 @@ static int test_dtls12_basic_connection_id(void) WOLFSSL *ssl_c = NULL, *ssl_s = NULL; struct test_memio_ctx test_ctx; - printf("Testing %s run #%ld ... ", params[i], j); + printf("Testing %s run #%ld ... ", params[i], (long int)j); XMEMSET(&test_ctx, 0, sizeof(test_ctx));