diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-05-10 15:42:54 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-05-10 15:42:54 -0400 |
commit | 8368e139c176dcde3b125f4a180ff868729b1862 (patch) | |
tree | c4dd77aef93eef5d67b56aa4dc35ce6c4c371cf2 /tests/trie.c | |
parent | f3ecfc1ee49e1c3ddd3d19ca6166424d72a08a5c (diff) | |
download | bfs-8368e139c176dcde3b125f4a180ff868729b1862.tar.xz |
config: s/BFS_COUNTOF/countof/
Diffstat (limited to 'tests/trie.c')
-rw-r--r-- | tests/trie.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/trie.c b/tests/trie.c index c2af18a..ced14d4 100644 --- a/tests/trie.c +++ b/tests/trie.c @@ -38,7 +38,7 @@ const char *keys[] = { ">>>", }; -const size_t nkeys = BFS_COUNTOF(keys); +const size_t nkeys = countof(keys); int main(void) { struct trie trie; |