summaryrefslogtreecommitdiffstats
path: root/bin/sleep
diff options
context:
space:
mode:
authorstefanf <stefanf@FreeBSD.org>2005-08-07 09:11:38 +0000
committerstefanf <stefanf@FreeBSD.org>2005-08-07 09:11:38 +0000
commit6abe070f3cb1603c2a802326ef25992d1d298553 (patch)
tree9f76f23a7d7b0d33993f32cc13fc536e509c7edb /bin/sleep
parent5a67019bb80da7558b0762003696b2f5d9ee8cec (diff)
downloadFreeBSD-src-6abe070f3cb1603c2a802326ef25992d1d298553.zip
FreeBSD-src-6abe070f3cb1603c2a802326ef25992d1d298553.tar.gz
Fix a comment.
Submitted by: Liam J. Foy
Diffstat (limited to 'bin/sleep')
-rw-r--r--bin/sleep/sleep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/sleep/sleep.c b/bin/sleep/sleep.c
index 8c4becf..f38b183 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;
}
OpenPOWER on IntegriCloud