mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-26 14:06:15 +01: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:
parent
7ea05283ac
commit
2eb66a2091
@ -265,7 +265,10 @@ end_element (GMarkupParseContext *context,
|
||||
static GMarkupParser parser =
|
||||
{
|
||||
start_element,
|
||||
end_element
|
||||
end_element,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL
|
||||
};
|
||||
|
||||
typedef struct
|
||||
|
Loading…
Reference in New Issue
Block a user