From 741522667afbe280d1d7c1db2cb6016fb798e021 Mon Sep 17 00:00:00 2001 From: delphij Date: Sun, 9 Oct 2005 04:39:07 +0000 Subject: [PATCH] MFC (by stefanf) | Fix a comment. | | Submitted by: Liam J. Foy | | Revision Changes Path | 1.20 +1 -1 src/bin/sleep/sleep.c Approved by: re (scottl) --- bin/sleep/sleep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/sleep/sleep.c b/bin/sleep/sleep.c index 8c4becfa12ac..f38b183cb2bf 100644 --- a/bin/sleep/sleep.c +++ b/bin/sleep/sleep.c @@ -88,7 +88,7 @@ main(int argc, char *argv[]) if (l > INT_MAX) { /* * Avoid overflow when `seconds' is huge. This assumes - * that the maximum value for a time_t is >= INT_MAX. + * that the maximum value for a time_t is <= INT_MAX. */ l = INT_MAX; }