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/ring_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/ring_test.c')
-rw-r--r-- | test/ring_test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ring_test.c b/test/ring_test.c index 85815a8..c1ab0fd 100644 --- a/test/ring_test.c +++ b/test/ring_test.c @@ -25,9 +25,9 @@ #define MSG_SIZE 20 -ZixRing* ring = 0; -unsigned n_writes = 0; -bool read_error = false; +static ZixRing* ring = 0; +static unsigned n_writes = 0; +static bool read_error = false; static int failure(const char* fmt, ...) |