From c85109fc322137596bf34cffc5445d568223c60d Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Thu, 12 Jul 2012 08:02:18 -0400 Subject: Coding style and whitespace cleanup. --- calendar/gui/misc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'calendar/gui/misc.c') diff --git a/calendar/gui/misc.c b/calendar/gui/misc.c index f67ab9142e..ed0f401db2 100644 --- a/calendar/gui/misc.c +++ b/calendar/gui/misc.c @@ -93,17 +93,17 @@ calculate_time (time_t start, hours = difference / 3600; difference %= 3600; - times[i++] = g_strdup_printf (ngettext("%d hour", "%d hours", hours), hours); + times[i++] = g_strdup_printf (ngettext ("%d hour", "%d hours", hours), hours); } if (difference >= 60) { minutes = difference / 60; difference %= 60; - times[i++] = g_strdup_printf (ngettext("%d minute", "%d minutes", minutes), minutes); + times[i++] = g_strdup_printf (ngettext ("%d minute", "%d minutes", minutes), minutes); } if (i == 0 || difference != 0) { /* TRANSLATORS: here, "second" is the time division (like "minute"), not the ordinal number (like "third") */ - times[i++] = g_strdup_printf (ngettext("%d second", "%d seconds", difference), (gint)difference); + times[i++] = g_strdup_printf (ngettext ("%d second", "%d seconds", difference), (gint) difference); } times[i] = NULL; -- cgit v1.2.3