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/bitset_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/bitset_test.c')
-rw-r--r-- | test/bitset_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bitset_test.c b/test/bitset_test.c index 3ac1bb7..554e238 100644 --- a/test/bitset_test.c +++ b/test/bitset_test.c @@ -71,7 +71,7 @@ main(void) } const size_t count = zix_bitset_count_up_to(b, t, i); if (count != 0) { - return test_fail("Count to %zu is %zu != %zu\n", i, count, 0); + return test_fail("Count to %zu is %zu != %d\n", i, count, 0); } } |