[Xfce4-commits] [xfce/xfwm4] 01/01: Use correct type on platforms where time_t is 64bits like OpenBSD

noreply at xfce.org noreply at xfce.org
Tue Dec 9 17:34:05 CET 2014


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

ochosi pushed a commit to branch master
in repository xfce/xfwm4.

commit 8448703965b25c1ee97410aa463d789a43a6c771
Author: Stefan Sperling <stsp at stsp.name>
Date:   Wed Feb 26 23:35:14 2014 +0100

    Use correct type on platforms where time_t is 64bits like OpenBSD
    
    Signed-off-by: Simon Steinbeiss <simon.steinbeiss at elfenbeinturm.at>
---
 src/startup_notification.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/startup_notification.c b/src/startup_notification.c
index ac3042c..0798092 100644
--- a/src/startup_notification.c
+++ b/src/startup_notification.c
@@ -126,7 +126,8 @@ sn_collect_timed_out_foreach (void *element, void *data)
 {
     CollectTimedOutData *ctod;
     SnStartupSequence *sequence;
-    long tv_sec, tv_usec;
+    time_t tv_sec;
+    suseconds_t tv_usec;
     double elapsed;
 
     g_return_if_fail (data != NULL);

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


More information about the Xfce4-commits mailing list