mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-11 03:46:17 +01:00
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) | ^~~~~~
This commit is contained in:
parent
75ba0e552d
commit
913d222c88
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user