From 0ab62e29db1209a9e0a2d9261d4c7d85a8ca65da Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 29 May 2023 21:08:24 -0400 Subject: Fix inappropriate use of PRIuPTR for size_t --- test/test_btree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_btree.c') diff --git a/test/test_btree.c b/test/test_btree.c index 7fd73bc..9694a7b 100644 --- a/test/test_btree.c +++ b/test/test_btree.c @@ -632,7 +632,7 @@ main(int argc, char** argv) const size_t n_elems = (argc > 1) ? zix_test_size_arg(argv[1], 4U, 1U << 20U) : 131072U; - printf("Running %u tests with %" PRIuPTR " elements", n_tests, n_elems); + printf("Running %u tests with %zu elements", n_tests, n_elems); for (unsigned i = 0; i < n_tests; ++i) { printf("."); fflush(stdout); -- cgit v1.2.1