diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-01-18 11:36:44 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-01-18 12:27:29 -0500 |
commit | 22ab38bd2294554e33148d8660fd1b79a9fb8b0c (patch) | |
tree | 33ca83c8d081e8df31eec5b692f5de914f36d3e0 /tests | |
parent | 03563b1407e436b2863509ebf09d412e79cbd1dd (diff) | |
download | bfs-22ab38bd2294554e33148d8660fd1b79a9fb8b0c.tar.xz |
tests/trie: Fix "handling" typo
Diffstat (limited to 'tests')
-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 70e2414..c610571 100644 --- a/tests/trie.c +++ b/tests/trie.c @@ -94,7 +94,7 @@ int main(void) { } } - // This tests the "jump" node handline on 32-bit platforms + // This tests the "jump" node handling on 32-bit platforms size_t longsize = 1 << 20; char *longstr = malloc(longsize); assert(longstr); |