[glib] gtimer: Whitespace fixes



commit 42a8e952ef5b16cc4fa16c82e2d3c4c33f824dd8
Author: Philip Withnall <withnall endlessm com>
Date:   Tue May 2 15:59:59 2017 +0100

    gtimer: Whitespace fixes
    
    Signed-off-by: Philip Withnall <withnall endlessm com>

 glib/gtimer.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/glib/gtimer.c b/glib/gtimer.c
index 4d24cae..a51b359 100644
--- a/glib/gtimer.c
+++ b/glib/gtimer.c
@@ -504,12 +504,12 @@ g_time_val_to_iso8601 (GTimeVal *time_)
   struct tm tm_;
 #endif
   time_t secs;
-  
+
   g_return_val_if_fail (time_->tv_usec >= 0 && time_->tv_usec < G_USEC_PER_SEC, NULL);
 
- secs = time_->tv_sec;
+  secs = time_->tv_sec;
 #ifdef _WIN32
- tm = gmtime (&secs);
+  tm = gmtime (&secs);
 #else
 #ifdef HAVE_GMTIME_R
   tm = gmtime_r (&secs, &tm_);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]