summaryrefslogtreecommitdiffstats
path: root/usr.bin/w
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1995-10-08 23:16:45 +0000
committerache <ache@FreeBSD.org>1995-10-08 23:16:45 +0000
commit89926b7c1c6dfb9ad6b9e0e8295be7ec47221ade (patch)
treebccfe7777f8d55221684cd2d264984284b9b0184 /usr.bin/w
parentb965b1036f34a44927d0103fb1d6c68e5e558787 (diff)
downloadFreeBSD-src-89926b7c1c6dfb9ad6b9e0e8295be7ec47221ade.zip
FreeBSD-src-89926b7c1c6dfb9ad6b9e0e8295be7ec47221ade.tar.gz
Fix one column wrong offset in previous change days->day
Diffstat (limited to 'usr.bin/w')
-rw-r--r--usr.bin/w/pr_time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/w/pr_time.c b/usr.bin/w/pr_time.c
index 1a50fdc..dfbe154 100644
--- a/usr.bin/w/pr_time.c
+++ b/usr.bin/w/pr_time.c
@@ -91,7 +91,7 @@ pr_idle(idle)
/* If idle more than 36 hours, print as a number of days. */
if (idle >= 36 * 3600) {
int days = idle / 86400;
- (void)printf(" %dday%s ", days, days > 1 ? "s" : "" );
+ (void)printf(" %dday%s ", days, days > 1 ? "s" : " " );
}
/* If idle more than an hour, print as HH:MM. */
OpenPOWER on IntegriCloud