mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +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:
parent
8ad4f752b1
commit
60d2cfb6ae
@ -86,7 +86,8 @@ static const GDBusInterfaceVTable boo_vtable =
|
||||
{
|
||||
NULL, /* _method_call */
|
||||
NULL, /* _get_property */
|
||||
NULL /* _set_property */
|
||||
NULL, /* _set_property */
|
||||
{ 0 }
|
||||
};
|
||||
|
||||
/* Runs in a worker thread. */
|
||||
|
Loading…
Reference in New Issue
Block a user