We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd697d7 commit cc35139Copy full SHA for cc35139
1 file changed
src/misc_tools.c
@@ -70,7 +70,7 @@ void print_time(WINDOW *window)
70
struct tm *timeinfo = get_time();
71
72
wattron(window, COLOR_PAIR(BLUE));
73
- wprintw(window, "[%2d:%02d:%02d] ", timeinfo->tm_hour, timeinfo->tm_min, timeinfo->tm_sec);
+ wprintw(window, "[%d:%02d:%02d] ", timeinfo->tm_hour, timeinfo->tm_min, timeinfo->tm_sec);
74
wattroff(window,COLOR_PAIR(BLUE));
75
}
76
0 commit comments