Fix typo.

This commit is contained in:
tsubai 2000-03-26 08:29:12 +00:00
parent 40b550935e
commit d806694e39
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: z8530tty.c,v 1.5 2000/03/23 06:40:34 thorpej Exp $ */
/* $NetBSD: z8530tty.c,v 1.6 2000/03/26 08:29:12 tsubai Exp $ */
/*-
* Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998, 1999
@ -1347,7 +1347,7 @@ zstty_rxsoft(zst, tp)
if (cc == zstty_rbuf_size) {
zst->zst_floods++;
if (zst->zst_errors++ == 0)
callout_start(&zst->zst_diag_ch, 60 * hz,
callout_reset(&zst->zst_diag_ch, 60 * hz,
zstty_diag, zst);
}
@ -1358,7 +1358,7 @@ zstty_rxsoft(zst, tp)
if (ISSET(rr1, ZSRR1_DO)) {
zst->zst_overflows++;
if (zst->zst_errors++ == 0)
callout_start(&zst->zst_diag_ch,
callout_reset(&zst->zst_diag_ch,
60 * hz, zstty_diag, zst);
}
if (ISSET(rr1, ZSRR1_FE))