From 06b045b28394e7d0219f626fd1a5b21236a8e303 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 20 Sep 2011 19:43:18 +0000 Subject: Const correctness. git-svn-id: http://svn.drobilla.net/zix/trunk@36 df6676b4-ccc9-40e5-b5d6-7c4628a128e3 --- test/patree_bench.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/patree_bench.c') diff --git a/test/patree_bench.c b/test/patree_bench.c index 8af9f9b..02998d6 100644 --- a/test/patree_bench.c +++ b/test/patree_bench.c @@ -146,7 +146,7 @@ main(int argc, char** argv) search_start = bench_start(); for (size_t i = 0; i < n; ++i) { const size_t index = rand() % n; - char* match = NULL; + const char* match = NULL; if (zix_patree_find(patree, strings[index], &match)) { return test_fail("Patree: Failed to find `%s'\n", strings[index]); } -- cgit v1.2.1