From 2c0c484d52cbbacbbfbffb6d490d83407823b7ea Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 15 Jul 2020 17:22:56 +0200 Subject: Add missing static specifiers --- test/test_state.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'test/test_state.c') diff --git a/test/test_state.c b/test/test_state.c index 6eb7793..1cb2ce5 100644 --- a/test/test_state.c +++ b/test/test_state.c @@ -41,10 +41,10 @@ #include #include -uint32_t atom_Float = 0; -float in = 1.0; -float out = 42.0; -float control = 1234.0; +static uint32_t atom_Float = 0; +static float in = 1.0; +static float out = 42.0; +static float control = 1234.0; static const void* get_port_value(const char* port_symbol, @@ -93,8 +93,8 @@ set_port_value(const char* port_symbol, } } -char** uris = NULL; -size_t n_uris = 0; +static char** uris = NULL; +static size_t n_uris = 0; static LV2_URID map_uri(LV2_URID_Map_Handle handle, const char* uri) -- cgit v1.2.1