summaryrefslogtreecommitdiffstats
path: root/test/tree_bench.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/tree_bench.c')
-rw-r--r--test/tree_bench.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tree_bench.c b/test/tree_bench.c
index 8df9e5a..d459268 100644
--- a/test/tree_bench.c
+++ b/test/tree_bench.c
@@ -1,5 +1,5 @@
/*
- Copyright 2011 David Robillard <http://drobilla.net>
+ Copyright 2011-2014 David Robillard <http://drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
@@ -188,7 +188,7 @@ bench_zix_btree(size_t n_elems,
for (size_t i = 0; i < n_elems; i++) {
r = unique_rand(i);
void* removed;
- if (zix_btree_remove(t, (void*)r, &removed)) {
+ if (zix_btree_remove(t, (void*)r, &removed, NULL)) {
return test_fail("Failed to remove %zu\n", r);
}
}