1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-07-05 20:16:44 +02:00

a few UI changes

This commit is contained in:
Jfreegman
2014-09-25 04:31:45 -04:00
parent 3a176e1cab
commit 2e65ee3609
5 changed files with 16 additions and 8 deletions

View File

@ -87,7 +87,7 @@ void get_time_str(char *buf, int bufsize)
return;
}
const char *t = user_settings->time == TIME_12 ? "[%-I:%M:%S] " : "[%H:%M:%S] ";
const char *t = user_settings->time == TIME_12 ? "%-I:%M:%S " : "%H:%M:%S ";
strftime(buf, bufsize, t, get_time());
}