mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 07:26:15 +01:00
Fix missing initializer warning in gio/tests/gdbus-non-socket.c
gio/tests/gdbus-non-socket.c:116:1: error: missing initializer for field ‘padding’ of ‘GDBusInterfaceVTable’ {aka ‘const struct _GDBusInterfaceVTable’} 116 | }; | ^
This commit is contained in:
parent
2187406f70
commit
d255962abb
@ -112,7 +112,8 @@ pokee_method_call (GDBusConnection *connection,
|
||||
static const GDBusInterfaceVTable pokee_vtable = {
|
||||
pokee_method_call,
|
||||
NULL, /* get_property */
|
||||
NULL /* set_property */
|
||||
NULL, /* set_property */
|
||||
{ 0 }
|
||||
};
|
||||
|
||||
/* Processes:
|
||||
|
Loading…
Reference in New Issue
Block a user