From 59acf6950c3b3321a592f1a77984395bcb2c8e0f Mon Sep 17 00:00:00 2001 From: Emmanuel Fleury Date: Fri, 20 Nov 2020 19:55:13 +0100 Subject: [PATCH] Fix missing initializer warning in gio/tests/gdbus-example-server.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit gio/tests/gdbus-example-server.c:280:1: error: missing initializer for field ‘padding’ of ‘GDBusInterfaceVTable’ {aka ‘const struct _GDBusInterfaceVTable’} 280 | }; | ^ --- gio/tests/gdbus-example-server.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gio/tests/gdbus-example-server.c b/gio/tests/gdbus-example-server.c index 00e482724..b19f6505d 100644 --- a/gio/tests/gdbus-example-server.c +++ b/gio/tests/gdbus-example-server.c @@ -276,7 +276,8 @@ static const GDBusInterfaceVTable interface_vtable = { handle_method_call, handle_get_property, - handle_set_property + handle_set_property, + { 0 } }; /* ---------------------------------------------------------------------------------------------------- */