Oops, remove tabs sneaked in wrong place

This commit is contained in:
Andrey A. Chernov 2001-03-02 23:49:07 +00:00
parent 000346454c
commit 5f2de0a78a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=73366

View File

@ -74,12 +74,12 @@ pr_attime(started, now)
tm.tm_year != tp.tm_year) {
/* The line below does not take DST into consideration */
/* else if (*now / 86400 != *started / 86400) { */
(void)strcpy(fmt, use_ampm ? "%a%I%p" : "%a%H ");
(void)strcpy(fmt, use_ampm ? "%a%I%p" : "%a%H ");
}
/* Default is hh:mm{am,pm}. */
else {
(void)strcpy(fmt, use_ampm ? "%l:%M%p" : "%k:%M ");
(void)strcpy(fmt, use_ampm ? "%l:%M%p" : "%k:%M ");
}
(void)strftime(buf, sizeof(buf) - 1, fmt, &tp);