diff options
author | nsayer <nsayer@FreeBSD.org> | 2001-08-23 03:06:16 +0000 |
---|---|---|
committer | nsayer <nsayer@FreeBSD.org> | 2001-08-23 03:06:16 +0000 |
commit | fef684f9f87b34942f826b95a4415570e4a1cb99 (patch) | |
tree | fab4581ab2628f87ae2a151832b8176c47d8d968 /sys/dev/wi/if_wi.c | |
parent | e702307f455571ffa47014a7fa1537e1f0ed3790 (diff) | |
download | FreeBSD-src-fef684f9f87b34942f826b95a4415570e4a1cb99.zip FreeBSD-src-fef684f9f87b34942f826b95a4415570e4a1cb99.tar.gz |
Oops. The new pci_ids array should be static.
Diffstat (limited to 'sys/dev/wi/if_wi.c')
-rw-r--r-- | sys/dev/wi/if_wi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/wi/if_wi.c b/sys/dev/wi/if_wi.c index 164fcf4..4c10c10 100644 --- a/sys/dev/wi/if_wi.c +++ b/sys/dev/wi/if_wi.c @@ -203,7 +203,7 @@ static driver_t wi_pci_driver = { sizeof(struct wi_softc) }; -struct { +static struct { unsigned int vendor,device; char *desc; } pci_ids[] = { |