summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-05-24 09:15:07 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-05-24 09:15:07 +0000
commit9e14057359e4d09c342cd8e5a2d840662854ee2b (patch)
tree929cb285a75b665470488a3f0fcb34b5c0af881b
parent15f755a7b928ea22e718dcec5ba136eebc327770 (diff)
fix a typo
-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 112c3a39366..86b5a40a649 100644
--- a/usr.bin/w/pr_time.c
+++ b/usr.bin/w/pr_time.c
@@ -92,7 +92,7 @@ pr_idle(idle)
/* If idle more than 36 hours, print as a number of days. */
if (idle >= 36 * SECSPERHOUR)
(void)printf(" %dday%c ", idle / SECSPERDAY,
- idle >= 24 * SECPERHOUR ? 's' : ' ');
+ idle >= 24 * SECSPERHOUR ? 's' : ' ');
/* If idle more than an hour, print as HH:MM. */
else if (idle >= SECSPERHOUR)