1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-06-09 14:20:06 +02:00

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

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