aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/w
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2001-03-02 23:49:07 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2001-03-02 23:49:07 +0000
commit5f2de0a78a6a82f8cc6f97df29ecc6cfb0771caf (patch)
tree9c710b009d81ebbd4872f3a8fe4f42b26557999a /usr.bin/w
parent000346454c6dc7c62495204afd8d6e11a1578ad9 (diff)
downloadsrc-5f2de0a78a6a82f8cc6f97df29ecc6cfb0771caf.tar.gz
src-5f2de0a78a6a82f8cc6f97df29ecc6cfb0771caf.zip
Oops, remove tabs sneaked in wrong place
Notes
Notes: svn path=/head/; revision=73366
Diffstat (limited to 'usr.bin/w')
-rw-r--r--usr.bin/w/pr_time.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/w/pr_time.c b/usr.bin/w/pr_time.c
index 30afc10dbdf2..5f77cf6ade22 100644
--- a/usr.bin/w/pr_time.c
+++ b/usr.bin/w/pr_time.c
@@ -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);