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/tree_test.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/tree_test.c')
-rw-r--r-- | test/tree_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tree_test.c b/test/tree_test.c index ac85ea4..29fba58 100644 --- a/test/tree_test.c +++ b/test/tree_test.c @@ -28,7 +28,7 @@ #include "zix/zix.h" -unsigned seed = 1; +static unsigned seed = 1; static int int_cmp(const void* a, const void* b, const void* user_data) |