Skip to content

Commit

Permalink
tests/api.c: in test_dtls12_basic_connection_id(), add cast to fix a …
Browse files Browse the repository at this point in the history
…-Wformat on size_t j when building -m32.
  • Loading branch information
douzzer committed Jan 7, 2025
1 parent b6ce89c commit 27c37b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/api.c
Original file line number Diff line number Diff line change
Expand Up @@ -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));

Expand Down

0 comments on commit 27c37b2

Please sign in to comment.