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)
This commit is contained in:
delphij 2005-10-09 04:39:07 +00:00
parent 6dbb98c55a
commit 741522667a

View File

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