Fix missing initializer warning in glib/tests/markup-subparser.c

glib/tests/markup-subparser.c:269:1: error: missing initializer for field ‘text’ of ‘GMarkupParser’ {aka ‘struct _GMarkupParser’}
  269 | };
      | ^
This commit is contained in:
Emmanuel Fleury 2020-11-08 21:42:41 +01:00
parent 7ea05283ac
commit 2eb66a2091

View File

@ -265,7 +265,10 @@ end_element (GMarkupParseContext *context,
static GMarkupParser parser =
{
start_element,
end_element
end_element,
NULL,
NULL,
NULL
};
typedef struct