aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/alarm-notify/util.c
diff options
context:
space:
mode:
authorKjartan Maraas <kmaraas@src.gnome.org>2006-02-08 21:06:24 +0800
committerKjartan Maraas <kmaraas@src.gnome.org>2006-02-08 21:06:24 +0800
commitd21d923423231c70ddb674b2e6bd61b1f39675cf (patch)
tree8719db8d42b5614ef43e0612baf38e1dd4e30da2 /calendar/gui/alarm-notify/util.c
parente081754bc2aef21109661dbde5b47282af7371a5 (diff)
downloadgsoc2013-evolution-d21d923423231c70ddb674b2e6bd61b1f39675cf.tar
gsoc2013-evolution-d21d923423231c70ddb674b2e6bd61b1f39675cf.tar.gz
gsoc2013-evolution-d21d923423231c70ddb674b2e6bd61b1f39675cf.tar.bz2
gsoc2013-evolution-d21d923423231c70ddb674b2e6bd61b1f39675cf.tar.lz
gsoc2013-evolution-d21d923423231c70ddb674b2e6bd61b1f39675cf.tar.xz
gsoc2013-evolution-d21d923423231c70ddb674b2e6bd61b1f39675cf.tar.zst
gsoc2013-evolution-d21d923423231c70ddb674b2e6bd61b1f39675cf.zip
broken pipes are soo fun
svn path=/trunk/; revision=31452
Diffstat (limited to 'calendar/gui/alarm-notify/util.c')
-rw-r--r--calendar/gui/alarm-notify/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/alarm-notify/util.c b/calendar/gui/alarm-notify/util.c
index 900d20e67d..93e44c1336 100644
--- a/calendar/gui/alarm-notify/util.c
+++ b/calendar/gui/alarm-notify/util.c
@@ -55,7 +55,7 @@ calculate_time (time_t start, time_t end)
char *str;
if (difference < 60) {/* Can't be zero */
- str = g_strdup_printf (_("(%d seconds)"), difference);
+ str = g_strdup_printf (_("(%ld seconds)"), difference);
} else if (difference > 60 && difference < 3600) { /* It will be x minutes y seconds*/
int minutes, seconds;
minutes = difference / 60;