diff options
Diffstat (limited to 'sys/arch/pmax/dev/dc.c')
-rw-r--r-- | sys/arch/pmax/dev/dc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/pmax/dev/dc.c b/sys/arch/pmax/dev/dc.c index 8b5712d7372..da0346fc622 100644 --- a/sys/arch/pmax/dev/dc.c +++ b/sys/arch/pmax/dev/dc.c @@ -1060,7 +1060,7 @@ dcscan(arg) dsr = MSR_DSR2; #ifdef HW_FLOW_CONTROL /*limit = (pmax_boardtype == DS_PMAX) ? 2 : 3;*/ - limit = (sc->dc_rtscts & (1 << 3)) :3 : 2; /*XXX*/ + limit = (sc->dc_rtscts & (1 << 3)) ? 3 : 2; /*XXX*/ #else limit = 2; #endif |