diff options
author | Emmanuel Fleury <emmanuel.fleury@gmail.com> | 2020-11-08 22:09:21 +0100 |
---|---|---|
committer | Emmanuel Fleury <emmanuel.fleury@gmail.com> | 2020-11-13 10:13:49 +0100 |
commit | 913d222c882f22a69ee90ac6c274ae8e4563bcc4 (patch) | |
tree | a0ea6810401e7849412f4672e5daa9472d1aa235 | |
parent | 75ba0e552daeda071a12da94cd96248951832d38 (diff) | |
download | glib-913d222c882f22a69ee90ac6c274ae8e4563bcc4.tar.gz |
Fix ‘static’ is not at beginning of declaration in glib/tests/option-context.c
glib/tests/option-context.c:1335:1: error: ‘static’ is not at beginning of declaration
1335 | static array_test1 (void)
| ^~~~~~
-rw-r--r-- | glib/tests/option-context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/glib/tests/option-context.c b/glib/tests/option-context.c index 4ae050214..68e990db0 100644 --- a/glib/tests/option-context.c +++ b/glib/tests/option-context.c @@ -1332,8 +1332,8 @@ ignore_test3 (void) g_option_context_free (context); } -void -static array_test1 (void) +static void +array_test1 (void) { GOptionContext *context; gboolean retval; |