Commit f05a5e0d authored by Brad Hards's avatar Brad Hards Committed by Rusty Russell

btree: spelling fix

parent 0d1d7d7a
...@@ -290,7 +290,7 @@ static int test_insert(struct btree *btree, size_t key[], size_t count) ...@@ -290,7 +290,7 @@ static int test_insert(struct btree *btree, size_t key[], size_t count)
if (!find(btree, key, k)) if (!find(btree, key, k))
return 0; return 0;
/* Make sure key's presense is consistent with our array. */ /* Make sure key's presence is consistent with our array. */
found = btree_find_first(btree, &key[k], iter); found = btree_find_first(btree, &key[k], iter);
if (key[k]) { if (key[k]) {
if (!found || iter->item != &key[k]) if (!found || iter->item != &key[k])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment