mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-05-22 13:30:41 +02: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 = {
|
static const GDBusInterfaceVTable interface_vtable = {
|
||||||
incoming_method_call,
|
incoming_method_call,
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL,
|
||||||
|
{ 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Loading…
x
Reference in New Issue
Block a user