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

f2404 pushed a 
commit to branch 
master
in repository apps/ristretto.

commit 344c82256d2dfbcbcc6c49de9cb4494c60747b47
Author: Igor <[email protected]>
Date:   Mon Jul 29 09:13:37 2019 -0400

    Fix compilation
    
    G_SOURCE_FUNC() is only defined since 2.58.
---
 src/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main.c b/src/main.c
index fa55709..e898456 100644
--- a/src/main.c
+++ b/src/main.c
@@ -138,7 +138,7 @@ main(int argc, char **argv)
             rof.iter = 1;
             rof.window = window;
 
-            gdk_threads_add_idle (G_SOURCE_FUNC (cb_rstto_open_files), &rof);
+            gdk_threads_add_idle ((GSourceFunc) cb_rstto_open_files, &rof);
 
             if (TRUE == rstto_settings_get_boolean_property (
                         settings,

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
_______________________________________________
Xfce4-commits mailing list
[email protected]
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to