diff options
author | Antoine Jacoutot <antoine@mtier.org> | 2013-09-11 21:45:38 +0800 |
---|---|---|
committer | Antoine Jacoutot <antoine@mtier.org> | 2013-09-11 21:45:38 +0800 |
commit | 281bbdfe365fe552e3077f22514ccf0984e3714b (patch) | |
tree | b68cfaebb9c327bbbaf424829eb2ec855ae07a49 /calendar | |
parent | 44a2cb9886223df8ee497f5ecd19123f7a3ca5ea (diff) | |
download | gsoc2013-evolution-281bbdfe365fe552e3077f22514ccf0984e3714b.tar gsoc2013-evolution-281bbdfe365fe552e3077f22514ccf0984e3714b.tar.gz gsoc2013-evolution-281bbdfe365fe552e3077f22514ccf0984e3714b.tar.bz2 gsoc2013-evolution-281bbdfe365fe552e3077f22514ccf0984e3714b.tar.lz gsoc2013-evolution-281bbdfe365fe552e3077f22514ccf0984e3714b.tar.xz gsoc2013-evolution-281bbdfe365fe552e3077f22514ccf0984e3714b.tar.zst gsoc2013-evolution-281bbdfe365fe552e3077f22514ccf0984e3714b.zip |
Add space after a type cast.
Diffstat (limited to 'calendar')
-rw-r--r-- | 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 670aab68c6..1c4f01a150 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); |