diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-08-31 10:16:35 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-08-31 10:16:35 -0400 |
commit | 345047be5b8766a9763d4a717ff034e4e4083ade (patch) | |
tree | d1865a39269919087ace15184643907a56d62090 /src/color.c | |
parent | 5f736eada55f84c7499103faf7c181b80eb7092f (diff) | |
download | bfs-345047be5b8766a9763d4a717ff034e4e4083ade.tar.xz |
trie: New trie_clear() function
Diffstat (limited to 'src/color.c')
-rw-r--r-- | src/color.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/color.c b/src/color.c index f7a5d86..b9a788b 100644 --- a/src/color.c +++ b/src/color.c @@ -326,8 +326,7 @@ fail: /** Rebuild the case-insensitive trie after all extensions have been parsed. */ static int build_iext_trie(struct colors *colors) { - trie_destroy(&colors->iext_trie); - trie_init(&colors->iext_trie); + trie_clear(&colors->iext_trie); TRIE_FOR_EACH(&colors->ext_trie, leaf) { size_t len = leaf->length - 1; |