mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 15:06:14 +01:00
Fix missing initializer in gio/tests/fake-service-name.c
gio/tests/fake-service-name.c:55:1: error: missing initializer for field ‘padding’ of ‘GDBusInterfaceVTable’ {aka ‘const struct _GDBusInterfaceVTable’} 55 | }; | ^
This commit is contained in:
parent
00a15152f3
commit
e3453f39dd
@ -51,7 +51,8 @@ incoming_method_call (GDBusConnection *connection,
|
||||
static const GDBusInterfaceVTable interface_vtable = {
|
||||
incoming_method_call,
|
||||
NULL,
|
||||
NULL
|
||||
NULL,
|
||||
{ 0 }
|
||||
};
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user