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

gio/tests/gdbus-example-peer.c:120:1: error: missing initializer for field ‘padding’ of ‘GDBusInterfaceVTable’ {aka ‘const struct _GDBusInterfaceVTable’}
  120 | };
      | ^
This commit is contained in:
Emmanuel Fleury 2020-11-20 19:28:23 +01:00
parent 1c084ca717
commit fd926b1ea7

View File

@ -117,6 +117,7 @@ static const GDBusInterfaceVTable interface_vtable =
handle_method_call,
NULL,
NULL,
{ 0 }
};
/* ---------------------------------------------------------------------------------------------------- */