Fix overrun error define name

This commit is contained in:
Andrey A. Chernov 1995-03-31 11:04:22 +00:00
parent dfd88e5a00
commit c03e3a2617
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7525

View File

@ -785,7 +785,7 @@ int cxrinta (cx_chan_t *c)
if (risr & (RIS_OVERRUN | RISA_PARERR | RISA_FRERR | RISA_BREAK)) { if (risr & (RIS_OVERRUN | RISA_PARERR | RISA_FRERR | RISA_BREAK)) {
int err = 0; int err = 0;
if (risr & RISA_OVERRUN) if (risr & RIS_OVERRUN)
err |= TTY_OE; err |= TTY_OE;
if (risr & RISA_PARERR) if (risr & RISA_PARERR)
err |= TTY_PE; err |= TTY_PE;