diff options
Diffstat (limited to 'sys/i386/isa/stallion.c')
| -rw-r--r-- | sys/i386/isa/stallion.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/isa/stallion.c b/sys/i386/isa/stallion.c index 68c2683ff247..e9f05940635b 100644 --- a/sys/i386/isa/stallion.c +++ b/sys/i386/isa/stallion.c @@ -140,7 +140,7 @@ static unsigned int stl_irqshared = 0; */ static char *stl_drvname = "stl"; static char *stl_longdrvname = "Stallion Multiport Serial Driver"; -static char *stl_drvversion = "0.0.3"; +static char *stl_drvversion = "0.0.4"; static int stl_brdprobed[STL_MAXBRDS]; static int stl_nrbrds = 0; @@ -2027,7 +2027,7 @@ static void stl_rxprocess(stlport_t *portp) } } else { while (portp->rx.tail != head) { - ch = *(portp->rx.tail); + ch = (unsigned char) *(portp->rx.tail); if (status = *(portp->rx.tail + STL_RXBUFSIZE)) { *(portp->rx.tail + STL_RXBUFSIZE) = 0; if (status & ST_BREAK) |
