Fix missing initializer warning in gio/glib-compile-schemas.c

gio/glib-compile-schemas.c:2181:12: warning: missing field 'short_name' initializer
    { NULL }
           ^
This commit is contained in:
Emmanuel Fleury 2021-04-28 23:22:26 +02:00
parent 4301110174
commit 27454ed557

View File

@ -2178,7 +2178,7 @@ main (int argc, char **argv)
/* These options are only for use in the gschema-compile tests */
{ "schema-file", 0, G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_FILENAME_ARRAY, &schema_files, NULL, NULL },
{ "override-file", 0, G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_FILENAME_ARRAY, &override_files, NULL, NULL },
{ NULL }
G_OPTION_ENTRY_NULL
};
#ifdef G_OS_WIN32