summaryrefslogtreecommitdiff
path: root/lib/ephy-time-helpers.c
diff options
context:
space:
mode:
authorJan-Michael Brummer <jan.brummer@tabos.org>2019-07-15 20:37:36 +0200
committerJan-Michael Brummer <jan.brummer@tabos.org>2019-07-15 20:37:36 +0200
commit4c719915f66e4eb706830ab399f9815e32d2aa49 (patch)
tree803d9bdd9d287d744d4c5bc0cac27bfde0573896 /lib/ephy-time-helpers.c
parent60d88e8045ba2dabcb33b659a9929a703a14fed3 (diff)
downloadepiphany-4c719915f66e4eb706830ab399f9815e32d2aa49.tar.gz
Mass update: Apply uncrustify style to everything
Diffstat (limited to 'lib/ephy-time-helpers.c')
-rw-r--r--lib/ephy-time-helpers.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ephy-time-helpers.c b/lib/ephy-time-helpers.c
index 060833f20..9289e49c8 100644
--- a/lib/ephy-time-helpers.c
+++ b/lib/ephy-time-helpers.c
@@ -65,9 +65,10 @@
**/
char *
-eel_strdup_strftime (const char *format, struct tm *time_pieces)
+eel_strdup_strftime (const char *format,
+ struct tm *time_pieces)
{
- g_autoptr(GString) string = NULL;
+ g_autoptr (GString) string = NULL;
const char *remainder, *percent;
char code[4], buffer[512];
char *piece, *result;
@@ -230,7 +231,6 @@ ephy_time_helpers_utf_friendly_time (time_t date)
if (then.tm_mday == now.tm_mday &&
then.tm_mon == now.tm_mon &&
then.tm_year == now.tm_year) {
-
if (!use_24) {
/* Translators: "friendly time" string for the current day, strftime format. like "Today 12∶34 am" */
format = _("Today %I∶%M %p");