mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Minor style problem I introduced recently
This commit is contained in:
parent
34e4437eb0
commit
b9efeffff0
1 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue