From c37311ae36a512571c68e38d55118ae9692fc2fb Mon Sep 17 00:00:00 2001 From: Jfreegman Date: Wed, 12 Mar 2014 18:48:25 -0400 Subject: [PATCH] an experiment gone horribly wrong --- src/misc_tools.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc_tools.c b/src/misc_tools.c index 3256e8c..3b070fc 100644 --- a/src/misc_tools.c +++ b/src/misc_tools.c @@ -68,7 +68,7 @@ struct tm *get_time(void) void print_time(WINDOW *window) { uint8_t s[MAX_STR_SIZE]; - strftime(s, MAX_STR_SIZE, "[%H:%M] ", get_time()); + strftime(s, MAX_STR_SIZE, "[%H:%M:%S] ", get_time()); wattron(window, COLOR_PAIR(BLUE)); wprintw(window, "%s", s);