Fix missing initializer warning in gio/tests/gdbus-example-server.c

gio/tests/gdbus-example-server.c:280:1: error: missing initializer for field ‘padding’ of ‘GDBusInterfaceVTable’ {aka ‘const struct _GDBusInterfaceVTable’}
  280 | };
      | ^
This commit is contained in:
Emmanuel Fleury 2020-11-20 19:55:13 +01:00
parent f587095cfc
commit 59acf6950c

View File

@ -276,7 +276,8 @@ static const GDBusInterfaceVTable interface_vtable =
{
handle_method_call,
handle_get_property,
handle_set_property
handle_set_property,
{ 0 }
};
/* ---------------------------------------------------------------------------------------------------- */