From 90d68a92eeba38a73231a73850f23f9f9097d2df Mon Sep 17 00:00:00 2001 From: Jason Downs Date: Thu, 25 Dec 1997 13:33:04 +0000 Subject: argh, typo. --- sys/dev/isa/isa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev/isa/isa.c') 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 */ -- cgit v1.2.3