[evolution] Add space after a type cast.



commit 281bbdfe365fe552e3077f22514ccf0984e3714b
Author: Antoine Jacoutot <antoine mtier org>
Date:   Wed Sep 11 15:45:38 2013 +0200

    Add space after a type cast.

 calendar/alarm-notify/alarm.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/calendar/alarm-notify/alarm.c b/calendar/alarm-notify/alarm.c
index 670aab6..1c4f01a 100644
--- a/calendar/alarm-notify/alarm.c
+++ b/calendar/alarm-notify/alarm.c
@@ -97,7 +97,7 @@ alarm_ready_cb (gpointer data)
                if (ar->trigger > now)
                        break;
 
-               debug (("Process alarm with trigger %" G_GINT64_FORMAT, (gint64)ar->trigger));
+               debug (("Process alarm with trigger %" G_GINT64_FORMAT, (gint64) ar->trigger));
                notify_id = ar;
 
                ar_copy = *ar;
@@ -154,7 +154,7 @@ setup_timeout (void)
        /* Add the time out */
        debug (
                ("Setting timeout for %d.%2d (from now) %" G_GINT64_FORMAT "%" G_GINT64_FORMAT,
-               diff / 60, diff % 60, (gint64)ar->trigger, (gint64)now));
+               diff / 60, diff % 60, (gint64) ar->trigger, (gint64) now));
        debug ((" %s", ctime (&ar->trigger)));
        debug ((" %s", ctime (&now)));
        timeout_id = g_timeout_add_seconds (diff, alarm_ready_cb, NULL);


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