mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-09 19:06:15 +01:00
Fix missing initializer warning in gio/gdbusobjectmanagerserver.c
gio/gdbusobjectmanagerserver.c:892:1: error: missing initializer for field ‘padding’ of ‘GDBusInterfaceVTable’ {aka ‘const struct _GDBusInterfaceVTable’} 892 | }; | ^
This commit is contained in:
parent
68e69a4128
commit
0cc48ee937
@ -888,7 +888,8 @@ static const GDBusInterfaceVTable manager_interface_vtable =
|
||||
{
|
||||
manager_method_call, /* handle_method_call */
|
||||
NULL, /* get_property */
|
||||
NULL /* set_property */
|
||||
NULL, /* set_property */
|
||||
{ 0 }
|
||||
};
|
||||
|
||||
/* ---------------------------------------------------------------------------------------------------- */
|
||||
|
Loading…
Reference in New Issue
Block a user