ar.c: correct strftime() format for ar -tv

This commit is contained in:
Mikael Pettersson
2019-07-02 18:17:06 +02:00
parent a05674438f
commit 512f2e452d

View File

@@ -481,7 +481,7 @@ static char *date_string(time_t t, char *buf)
exit(1);
}
/* Mon Day HH:MM YYYY */
strftime(buf, 64, "%b %d %H:%M %Y", tm);
strftime(buf, 64, "%b %e %H:%M %Y", tm);
return buf;
}