mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-31 06:13:29 +02:00
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:
@@ -265,7 +265,10 @@ end_element (GMarkupParseContext *context,
|
||||
static GMarkupParser parser =
|
||||
{
|
||||
start_element,
|
||||
end_element
|
||||
end_element,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL
|
||||
};
|
||||
|
||||
typedef struct
|
||||
|
Reference in New Issue
Block a user