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-peer-object-manager.c
gio/tests/gdbus-peer-object-manager.c: In function ‘mock_interface_get_vtable’: gio/tests/gdbus-peer-object-manager.c:111:3: error: missing initializer for field ‘padding’ of ‘GDBusInterfaceVTable’ {aka ‘struct _GDBusInterfaceVTable’} 111 | }; | ^
This commit is contained in:
parent
e3f6d4a08b
commit
0710429598
@ -108,6 +108,7 @@ mock_interface_get_vtable (GDBusInterfaceSkeleton *interface)
|
||||
NULL,
|
||||
mock_interface_get_property,
|
||||
NULL,
|
||||
{ 0 }
|
||||
};
|
||||
|
||||
return &vtable;
|
||||
|
Loading…
Reference in New Issue
Block a user