diff options
| author | 1997-12-25 13:33:03 +0000 | |
|---|---|---|
| committer | 1997-12-25 13:33:03 +0000 | |
| commit | caf7332083d248b74c2b756a31d05a8940a90f75 (patch) | |
| tree | 22c5152117f5de91c1711553766ff53fbefd1cfa /sys/dev/isa/isa.c | |
| parent | fix DRQUNK case (diff) | |
| download | wireguard-openbsd-caf7332083d248b74c2b756a31d05a8940a90f75.tar.xz wireguard-openbsd-caf7332083d248b74c2b756a31d05a8940a90f75.zip | |
argh, typo.
Diffstat (limited to 'sys/dev/isa/isa.c')
| -rw-r--r-- | sys/dev/isa/isa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/isa.c b/sys/dev/isa/isa.c index d71256df9d7..349dc18a665 100644 --- a/sys/dev/isa/isa.c +++ b/sys/dev/isa/isa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isa.c,v 1.26 1997/12/25 13:28:45 downsj Exp $ */ +/* $OpenBSD: isa.c,v 1.27 1997/12/25 13:33:03 downsj Exp $ */ /* $NetBSD: isa.c,v 1.85 1996/05/14 00:31:04 thorpej Exp $ */ /* @@ -257,6 +257,6 @@ isa_drq_isfree(vsp, drq) if (drq < 0 || drq > 7) panic("isa_drq_isfree: drq %d out of range\n", drq); - return (!(sc->sc_drq << drq) & 1); + return (!((sc->sc_drq << drq) & 1)); } #endif /* DIAGNOSTIC */ |
