mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 02:32:47 +00:00
Fix overrun error define name
This commit is contained in:
parent
dfd88e5a00
commit
c03e3a2617
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7525
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user