From 49e2838a98e49c0bb2029c6e5efcaf0549da0366 Mon Sep 17 00:00:00 2001 From: kaffeekanne Date: Tue, 23 Apr 2019 09:06:49 +0200 Subject: [PATCH] Fix indentation for time config --- src/ui/console.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/console.c b/src/ui/console.c index 393caff1..39bb02e9 100644 --- a/src/ui/console.c +++ b/src/ui/console.c @@ -1287,9 +1287,9 @@ cons_time_setting(void) char *pref_time_conf = prefs_get_string(PREF_TIME_CONFIG); if (g_strcmp0(pref_time_conf, "off") == 0) - cons_show("Time config (/time) : OFF"); + cons_show("Time config (/time) : OFF"); else - cons_show("Time config (/time) : %s", pref_time_conf); + cons_show("Time config (/time) : %s", pref_time_conf); prefs_free_string(pref_time_conf); char *pref_time_private = prefs_get_string(PREF_TIME_PRIVATE);