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

gio/tests/gdbus-connection.c:90:1: error: missing initializer for field ‘padding’ of ‘GDBusInterfaceVTable’ {aka ‘const struct _GDBusInterfaceVTable’}
   90 | };
      | ^
This commit is contained in:
Emmanuel Fleury 2020-11-19 01:03:23 +01:00
parent 8ad4f752b1
commit 60d2cfb6ae

View File

@ -86,7 +86,8 @@ static const GDBusInterfaceVTable boo_vtable =
{
NULL, /* _method_call */
NULL, /* _get_property */
NULL /* _set_property */
NULL, /* _set_property */
{ 0 }
};
/* Runs in a worker thread. */