summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/cx.c
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1995-03-31 11:04:22 +0000
committerache <ache@FreeBSD.org>1995-03-31 11:04:22 +0000
commit5298443c4f6089c467ea394b81f10c3c688f7381 (patch)
tree27630f16525edb73dd9ed3b6ab6627117fd64a01 /sys/i386/isa/cx.c
parent9f77a75ba02bb6ab159e75dc6184b29783e8ea96 (diff)
downloadFreeBSD-src-5298443c4f6089c467ea394b81f10c3c688f7381.zip
FreeBSD-src-5298443c4f6089c467ea394b81f10c3c688f7381.tar.gz
Fix overrun error define name
Diffstat (limited to 'sys/i386/isa/cx.c')
-rw-r--r--sys/i386/isa/cx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/isa/cx.c b/sys/i386/isa/cx.c
index 120cef7..c075baa 100644
--- a/sys/i386/isa/cx.c
+++ b/sys/i386/isa/cx.c
@@ -785,7 +785,7 @@ int cxrinta (cx_chan_t *c)
if (risr & (RIS_OVERRUN | RISA_PARERR | RISA_FRERR | RISA_BREAK)) {
int err = 0;
- if (risr & RISA_OVERRUN)
+ if (risr & RIS_OVERRUN)
err |= TTY_OE;
if (risr & RISA_PARERR)
err |= TTY_PE;
OpenPOWER on IntegriCloud