From 878bfd2616728368debf671db3d73187c0b99594 Mon Sep 17 00:00:00 2001 From: Sebastian Dransfeld Date: Sun, 21 Oct 2012 04:52:59 +0000 Subject: [PATCH] edbus: Add initializers to stop warnings SVN revision: 78292 --- legacy/edbus/src/lib/edbus_service.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/edbus/src/lib/edbus_service.h b/legacy/edbus/src/lib/edbus_service.h index 5b6b296b01..2d42e782ce 100644 --- a/legacy/edbus/src/lib/edbus_service.h +++ b/legacy/edbus/src/lib/edbus_service.h @@ -24,7 +24,7 @@ typedef struct _EDBus_Arg_Info * The signature will be "ss" and each string will have a tag name on * introspect XML with the respective name. */ -#define EDBUS_ARGS(args...) (const EDBus_Arg_Info[]){ args, { } } +#define EDBUS_ARGS(args...) (const EDBus_Arg_Info[]){ args, { NULL, NULL } } typedef struct _EDBus_Service_Interface EDBus_Service_Interface; typedef EDBus_Message * (*EDBus_Method_Cb)(const EDBus_Service_Interface *iface, const EDBus_Message *message);