summaryrefslogtreecommitdiff
path: root/sys/kern/tty.c
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-05-17 20:08:05 +0000
committerBruce Evans <bde@FreeBSD.org>1998-05-17 20:08:05 +0000
commitc8b4782815569caf8b3676d70e228da80c3e953d (patch)
treedf8982087f3ab491d52489ca8a7ce63ed19a92ea /sys/kern/tty.c
parentcb87a87c1673fca2b5d023bffc2d194cabd7f0c4 (diff)
Notes
Diffstat (limited to 'sys/kern/tty.c')
-rw-r--r--sys/kern/tty.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c
index fd57c2208820..56fc183136a0 100644
--- a/sys/kern/tty.c
+++ b/sys/kern/tty.c
@@ -38,7 +38,7 @@ static volatile int ttyverbose = 0;
* SUCH DAMAGE.
*
* @(#)tty.c 8.8 (Berkeley) 1/21/94
- * $Id: tty.c,v 1.101 1998/03/07 15:36:21 bde Exp $
+ * $Id: tty.c,v 1.102 1998/03/30 09:50:54 phk Exp $
*/
/*-
@@ -1539,9 +1539,9 @@ loop:
* of the target, so we round up.
* The formula is ceiling(slp * hz/1000000).
* 32-bit arithmetic is enough for hz < 169.
- * XXX see hzto() for how to avoid overflow if hz
+ * XXX see tvtohz() for how to avoid overflow if hz
* is large (divide by `tick' and/or arrange to
- * use hzto() if hz is large).
+ * use tvtohz() if hz is large).
*/
slp = (long) (((u_long)slp * hz) + 999999) / 1000000;
goto sleep;