[Xfce4-commits] [xfce/xfce4-session] 01/01: Fix GVariant format string in dbus server

noreply at xfce.org noreply at xfce.org
Mon May 13 23:53:15 CEST 2019


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

o   c   h   o   s   i       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 xfce/xfce4-session.

commit 897481f7cde2b8a254ce61e7154d9b1c78b686be
Author: Simon Steinbeiss <simon.steinbeiss at elfenbeinturm.at>
Date:   Mon May 13 23:50:50 2019 +0200

    Fix GVariant format string in dbus server
---
 xfce4-session/xfsm-client.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xfce4-session/xfsm-client.c b/xfce4-session/xfsm-client.c
index f3a88d5..0379b05 100644
--- a/xfce4-session/xfsm-client.c
+++ b/xfce4-session/xfsm-client.c
@@ -871,9 +871,9 @@ xfsm_client_dbus_set_sm_properties (XfsmDbusClient *object,
       return TRUE;
     }
 
-  g_variant_get (arg_properties, "a(sv)", &iter);
+  g_variant_get (arg_properties, "a{sv}", &iter);
 
-  while (g_variant_iter_next (iter, "(sv)", &prop_name, &variant))
+  while (g_variant_iter_next (iter, "{sv}", &prop_name, &variant))
     {
       GValue value;
 

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


More information about the Xfce4-commits mailing list