From e0e5247337fe9d252caa73834cfe86aaa62047b2 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Fri, 25 May 2001 19:24:58 +0000 Subject: [PATCH] Fix a minor formatting nit --- sys/pccard/pcic_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/pccard/pcic_pci.c b/sys/pccard/pcic_pci.c index 9f3d1b0a5eb..d041ce4bef6 100644 --- a/sys/pccard/pcic_pci.c +++ b/sys/pccard/pcic_pci.c @@ -121,7 +121,7 @@ struct pcic_pci_table static struct pcic_pci_table * pcic_pci_lookup(u_int32_t devid, struct pcic_pci_table *tbl) { -while (tbl->devid) { + while (tbl->devid) { if (tbl->devid == devid) return (tbl); tbl++;