diff options
author | David Robillard <d@drobilla.net> | 2018-11-17 11:19:49 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-11-17 11:19:49 +0100 |
commit | ef51139dfb60850c9ee4f6d9ea4ea7bfbc4aa15a (patch) | |
tree | 44c9c0f55270e211341a1ca3aa6ceb3e260ce8e2 /test/dict_bench.c | |
parent | 5daf812123b8533821b3e05ab7fc165b14dd6a82 (diff) | |
download | zix-ef51139dfb60850c9ee4f6d9ea4ea7bfbc4aa15a.tar.gz zix-ef51139dfb60850c9ee4f6d9ea4ea7bfbc4aa15a.tar.bz2 zix-ef51139dfb60850c9ee4f6d9ea4ea7bfbc4aa15a.zip |
Fix missing variable declaration warnings
Diffstat (limited to 'test/dict_bench.c')
-rw-r--r-- | test/dict_bench.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dict_bench.c b/test/dict_bench.c index 923ec5d..228d25c 100644 --- a/test/dict_bench.c +++ b/test/dict_bench.c @@ -30,7 +30,7 @@ #include "zix/patree.h" #include "zix/trie.h" -const unsigned seed = 1; +static const unsigned seed = 1; static int test_fail(const char* fmt, ...) |