aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2001-05-25 19:24:58 +0000
committerWarner Losh <imp@FreeBSD.org>2001-05-25 19:24:58 +0000
commite0e5247337fe9d252caa73834cfe86aaa62047b2 (patch)
treec4574ff71baf5072bc1e745105cbb2baab150493
parent9d127f9ffb6dde7392aeeceb43748160e72beac7 (diff)
Notes
-rw-r--r--sys/pccard/pcic_pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/pccard/pcic_pci.c b/sys/pccard/pcic_pci.c
index 9f3d1b0a5ebb..d041ce4bef6c 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++;