diff options
author | David Robillard <d@drobilla.net> | 2020-07-15 21:04:09 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-07-15 21:04:09 +0200 |
commit | 2f7ffa585fbab18976ecf1f69aa9a28ed04a13ac (patch) | |
tree | 670dd8f623985af47b26bf00124511aa69972fba /lv2/atom | |
parent | 8e651d28aec21fefebbfc0746826b76172506902 (diff) | |
download | lv2-2f7ffa585fbab18976ecf1f69aa9a28ed04a13ac.tar.xz |
Add missing static specifiers
Diffstat (limited to 'lv2/atom')
-rw-r--r-- | lv2/atom/atom-test-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lv2/atom/atom-test-utils.c b/lv2/atom/atom-test-utils.c index 057dada..a9ab74b 100644 --- a/lv2/atom/atom-test-utils.c +++ b/lv2/atom/atom-test-utils.c @@ -23,8 +23,8 @@ #include <stdio.h> #include <stdlib.h> -char** uris = NULL; -uint32_t n_uris = 0; +static char** uris = NULL; +static uint32_t n_uris = 0; static char* copy_string(const char* str) |