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:
Emmanuel Fleury 2020-11-19 00:43:22 +01:00
parent e3f6d4a08b
commit 0710429598

View File

@ -108,6 +108,7 @@ mock_interface_get_vtable (GDBusInterfaceSkeleton *interface)
NULL,
mock_interface_get_property,
NULL,
{ 0 }
};
return &vtable;