From e3453f39dd898f384b5702d4a6362bcc9973868b Mon Sep 17 00:00:00 2001 From: Emmanuel Fleury Date: Tue, 2 Feb 2021 18:19:37 +0100 Subject: [PATCH] Fix missing initializer in gio/tests/fake-service-name.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit gio/tests/fake-service-name.c:55:1: error: missing initializer for field ‘padding’ of ‘GDBusInterfaceVTable’ {aka ‘const struct _GDBusInterfaceVTable’} 55 | }; | ^ --- gio/tests/fake-service-name.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gio/tests/fake-service-name.c b/gio/tests/fake-service-name.c index 1a601a50c..c3a61180c 100644 --- a/gio/tests/fake-service-name.c +++ b/gio/tests/fake-service-name.c @@ -51,7 +51,8 @@ incoming_method_call (GDBusConnection *connection, static const GDBusInterfaceVTable interface_vtable = { incoming_method_call, NULL, - NULL + NULL, + { 0 } }; static void