mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-11-12 05:45:35 +01:00
Fix missing initializer warning in gio/tests/gdbus-connection.c
gio/tests/gdbus-connection.c:90:1: error: missing initializer for field ‘padding’ of ‘GDBusInterfaceVTable’ {aka ‘const struct _GDBusInterfaceVTable’}
90 | };
| ^
This commit is contained in:
@@ -86,7 +86,8 @@ static const GDBusInterfaceVTable boo_vtable =
|
|||||||
{
|
{
|
||||||
NULL, /* _method_call */
|
NULL, /* _method_call */
|
||||||
NULL, /* _get_property */
|
NULL, /* _get_property */
|
||||||
NULL /* _set_property */
|
NULL, /* _set_property */
|
||||||
|
{ 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Runs in a worker thread. */
|
/* Runs in a worker thread. */
|
||||||
|
|||||||
Reference in New Issue
Block a user