Use abreviated weekday to preserve alignment

This commit is contained in:
Marc André Tanner 2014-02-24 17:29:42 +01:00
parent d9929a0570
commit 4bd951c4ae
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ static int list_session() {
if (e->d_name[0] != '.') {
struct stat sb; char buf[255];
if (stat(e->d_name, &sb) == 0) {
strftime(buf, sizeof(buf), "%A%t %d.%m.%Y %T", localtime(&sb.st_atime));
strftime(buf, sizeof(buf), "%a%t %d.%m.%Y %T", localtime(&sb.st_atime));
printf(" %s\t%s\n", buf, e->d_name);
}
}