From 81983b4cec0f82d7b6a39464b4e996dd57245683 Mon Sep 17 00:00:00 2001 From: imp Date: Sun, 29 Sep 2002 23:36:17 +0000 Subject: [PATCH] Parens considered good. --- sys/pccard/pcic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/pccard/pcic.c b/sys/pccard/pcic.c index ec9b1bd3cfe9..122bc246b71b 100644 --- a/sys/pccard/pcic.c +++ b/sys/pccard/pcic.c @@ -960,7 +960,7 @@ pcic_reset(void *chan) printf("int is %x stat is %x\n", sp->getb(sp, PCIC_INT_GEN), sp->getb(sp, PCIC_STATUS)); - if (!sp->getb(sp, PCIC_STATUS) & PCIC_READY) { + if ((sp->getb(sp, PCIC_STATUS) & PCIC_READY) == 0) { timeout(pcic_reset, (void *)slt, hz/10); return; }