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