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; }