summaryrefslogtreecommitdiffstats
path: root/sys/dev/isa/isa.c
diff options
context:
space:
mode:
authordownsj <downsj@openbsd.org>1997-12-25 13:33:03 +0000
committerdownsj <downsj@openbsd.org>1997-12-25 13:33:03 +0000
commitcaf7332083d248b74c2b756a31d05a8940a90f75 (patch)
tree22c5152117f5de91c1711553766ff53fbefd1cfa /sys/dev/isa/isa.c
parentfix DRQUNK case (diff)
downloadwireguard-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.c4
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 */