diff options
Diffstat (limited to 'test/btree_test.c')
-rw-r--r-- | test/btree_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/btree_test.c b/test/btree_test.c index 5184392..6914053 100644 --- a/test/btree_test.c +++ b/test/btree_test.c @@ -515,7 +515,7 @@ main(int argc, char** argv) const unsigned n_tests = 3u; const size_t n_elems = (argc > 1) ? strtoul(argv[1], NULL, 10) : 524288u; - printf("Running %u tests with %lu elements", n_tests, n_elems); + printf("Running %u tests with %" PRIuPTR " elements", n_tests, n_elems); for (unsigned i = 0; i < n_tests; ++i) { printf("."); fflush(stdout); |