diff options
| author | David Greenman <dg@FreeBSD.org> | 1995-10-09 08:25:35 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 1995-10-09 08:25:35 +0000 |
| commit | 6d7ab0a861588287ee248133c236ea31d340e200 (patch) | |
| tree | 2cbe4301aca5d073c27d2b943a1c079e31a3176b /usr.bin | |
| parent | 975a621d60de7c2e045c87224bbed4d9a30d5d5f (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/w/pr_time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/w/pr_time.c b/usr.bin/w/pr_time.c index 1a50fdcfebb4d..dfbe154b7c070 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. */ |
