summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-06-18 10:23:04 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-06-18 10:23:04 +0000
commit250ab2c9fc144bcc20a3638d209deb43d544eb6c (patch)
treeffc43cb25fcdd7f4d55a5bc1d6a69e6010c12955 /sys/dev/ic
parent54abe1cba7926386658d74d873059d72d8f08674 (diff)
fix a type mismatch
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/z8530tty.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/z8530tty.c b/sys/dev/ic/z8530tty.c
index 2aedeeaa73d..263cf940c38 100644
--- a/sys/dev/ic/z8530tty.c
+++ b/sys/dev/ic/z8530tty.c
@@ -1,5 +1,5 @@
-/* $OpenBSD: z8530tty.c,v 1.5 1996/06/10 07:34:14 deraadt Exp $ */
-/* $NetBSD: z8530tty.c,v 1.8.4.1 1996/06/03 20:01:07 gwr Exp $ */
+/* $OpenBSD: z8530tty.c,v 1.6 1996/06/18 10:23:03 deraadt Exp $ */
+/* $NetBSD: z8530tty.c,v 1.8.4.2 1996/06/13 23:11:56 gwr Exp $ */
/*
* Copyright (c) 1994 Gordon W. Ross
@@ -777,7 +777,7 @@ zsparam(tp, t)
if (zst->zst_tx_busy) {
zst->zst_heldtbc = zst->zst_tbc;
zst->zst_tbc = 0;
- cs->cs_heldchange = 0xFFFF;
+ cs->cs_heldchange = 0xFF; /* XXX */
} else {
zs_loadchannelregs(cs);
}