diff options
author | David Robillard <d@drobilla.net> | 2021-07-01 00:05:22 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-07-17 19:58:17 -0400 |
commit | 4b266e2f39a8d3a49b58c861c7fd852911cf7fb0 (patch) | |
tree | dc12d618dc52b640b82e522917b238e38af033b3 /test | |
parent | 46f9327b06e866e3180c1924a0afa0afd8b0b5c5 (diff) | |
download | zix-4b266e2f39a8d3a49b58c861c7fd852911cf7fb0.tar.gz zix-4b266e2f39a8d3a49b58c861c7fd852911cf7fb0.tar.bz2 zix-4b266e2f39a8d3a49b58c861c7fd852911cf7fb0.zip |
Use line comments where appropriate
Diffstat (limited to 'test')
-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 7738397..d4dd6b4 100644 --- a/test/btree_test.c +++ b/test/btree_test.c @@ -86,7 +86,7 @@ wildcard_cut(unsigned test_num, size_t n_elems) return ith_elem(test_num, n_elems, n_elems / 3); } -/** Wildcard comparator where 0 matches anything >= wildcard_cut(n_elems). */ +/// Wildcard comparator where 0 matches anything >= wildcard_cut(n_elems) static int wildcard_cmp(const void* a, const void* b, const void* user_data) { |