[Xfce4-commits] [apps/xfce4-terminal] 01/01: Resolve "missing field initializer" warning

noreply at xfce.org noreply at xfce.org
Fri May 4 16:38:32 CEST 2018


This is an automated email from the git hooks/post-receive script.

f   2   4   0   4       p   u   s   h   e   d       a       c   o   m   m   i   t       t   o       b   r   a   n   c   h       m   a   s   t   e   r   
   in repository apps/xfce4-terminal.

commit 2c18fd531628fe53bb74b0ad3c8e4400bcaac11a
Author: Igor <f2404 at yandex.ru>
Date:   Fri May 4 10:38:07 2018 -0400

    Resolve "missing field initializer" warning
---
 terminal/terminal-gdbus.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/terminal/terminal-gdbus.c b/terminal/terminal-gdbus.c
index bb30a9f..7b48f42 100644
--- a/terminal/terminal-gdbus.c
+++ b/terminal/terminal-gdbus.c
@@ -138,9 +138,9 @@ terminal_gdbus_method_call (GDBusConnection       *connection,
 
 static const GDBusInterfaceVTable terminal_gdbus_vtable =
 {
-  terminal_gdbus_method_call,
-  NULL, /* get property */
-  NULL  /* set property */
+  .method_call = terminal_gdbus_method_call,
+  .get_property = NULL,
+  .set_property = NULL
 };
 
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list