diff options
author | David Robillard <d@drobilla.net> | 2020-08-13 17:25:44 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-13 17:25:44 +0200 |
commit | 4aafa4a63ad9b86b3910e4f3607792ebe45bb329 (patch) | |
tree | d85cf9e1f13bf043947e2c96ccbda591986f693d /test/sorted_array_test.c | |
parent | ac426323570113bb13605b20d47273c8c23e3fe3 (diff) | |
download | zix-4aafa4a63ad9b86b3910e4f3607792ebe45bb329.tar.gz zix-4aafa4a63ad9b86b3910e4f3607792ebe45bb329.tar.bz2 zix-4aafa4a63ad9b86b3910e4f3607792ebe45bb329.zip |
Fix incorrect format specifiers
Diffstat (limited to 'test/sorted_array_test.c')
-rw-r--r-- | test/sorted_array_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sorted_array_test.c b/test/sorted_array_test.c index a90f1e7..ca4eac7 100644 --- a/test/sorted_array_test.c +++ b/test/sorted_array_test.c @@ -165,7 +165,7 @@ main(int argc, char** argv) return 1; } - printf("Running %u tests with %u elements (seed %d)", + printf("Running %u tests with %u elements (seed %u)", n_tests, n_elems, seed); for (unsigned i = 0; i < n_tests; ++i) { |