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/gnotification-server.c
gio/tests/gnotification-server.c: In function ‘g_notification_server_bus_acquired’: gio/tests/gnotification-server.c:224:3: error: missing initializer for field ‘padding’ of ‘GDBusInterfaceVTable’ {aka ‘const struct _GDBusInterfaceVTable’} 224 | }; | ^
This commit is contained in:
parent
d255962abb
commit
cb0b4b00df
@ -220,7 +220,7 @@ g_notification_server_bus_acquired (GDBusConnection *connection,
|
||||
gpointer user_data)
|
||||
{
|
||||
const GDBusInterfaceVTable vtable = {
|
||||
org_gtk_Notifications_method_call, NULL, NULL
|
||||
org_gtk_Notifications_method_call, NULL, NULL, { 0 }
|
||||
};
|
||||
GNotificationServer *server = user_data;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user