diff options
author | imp <imp@FreeBSD.org> | 2001-11-15 06:44:43 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2001-11-15 06:44:43 +0000 |
commit | 34917066d6cad2ca82026138259b76cb0dfb20bb (patch) | |
tree | ab72d7d4d99089313041d98eb2fe8fd6c671e427 /sys/dev | |
parent | 686e52b5ce1d549cff8470765d91c80fc45f6892 (diff) | |
download | FreeBSD-src-34917066d6cad2ca82026138259b76cb0dfb20bb.zip FreeBSD-src-34917066d6cad2ca82026138259b76cb0dfb20bb.tar.gz |
Minor style problem I introduced recently
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/an/if_an_pccard.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/an/if_an_pccard.c b/sys/dev/an/if_an_pccard.c index d1a19aa..3cd9223 100644 --- a/sys/dev/an/if_an_pccard.c +++ b/sys/dev/an/if_an_pccard.c @@ -124,11 +124,11 @@ an_pccard_match(device_t dev) const struct pccard_product *pp; if ((pp = pccard_product_lookup(dev, an_pccard_products, - sizeof(an_pccard_products[0]), NULL)) != NULL) { - device_set_desc(dev, pp->pp_name); - return 0; + sizeof(an_pccard_products[0]), NULL)) != NULL) { + device_set_desc(dev, pp->pp_name); + return (0); } - return ENXIO; + return (ENXIO); } static int |