diff options
author | 1996-06-18 10:23:03 +0000 | |
---|---|---|
committer | 1996-06-18 10:23:03 +0000 | |
commit | e71df9cf5377335e220cf8fc8a2821c3dcc223d8 (patch) | |
tree | 459a31a842c78595844a4f7c7cbd862fc9f8fc1d | |
parent | New rev. from Matt Thomas (June 7, 1996), which (diff) | |
download | wireguard-openbsd-e71df9cf5377335e220cf8fc8a2821c3dcc223d8.tar.xz wireguard-openbsd-e71df9cf5377335e220cf8fc8a2821c3dcc223d8.zip |
fix a type mismatch
-rw-r--r-- | sys/dev/ic/z8530tty.c | 6 |
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); } |