diff options
author | green <green@FreeBSD.org> | 2004-10-14 03:05:39 +0000 |
---|---|---|
committer | green <green@FreeBSD.org> | 2004-10-14 03:05:39 +0000 |
commit | b72634a4d8ff3934f4d1c9c51d6d083bc9075d3b (patch) | |
tree | e072857e07d060e37013aa5d7bd8bb347c215bcb /sys | |
parent | 4255df54a689090abe388d79f90d4db0f3a4cf8e (diff) | |
download | FreeBSD-src-b72634a4d8ff3934f4d1c9c51d6d083bc9075d3b.zip FreeBSD-src-b72634a4d8ff3934f4d1c9c51d6d083bc9075d3b.tar.gz |
Fix a spelling error in a panic string.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c index 053cf58..508fa3b 100644 --- a/sys/dev/pci/pci.c +++ b/sys/dev/pci/pci.c @@ -1576,7 +1576,7 @@ pci_alloc_map(device_t dev, device_t child, int type, int *rid, resource_list_add(rl, type, *rid, start, end, count); rle = resource_list_find(rl, type, *rid); if (rle == NULL) - panic("pci_alloc_map: unexpedly can't find resource."); + panic("pci_alloc_map: unexpectedly can't find resource."); rle->res = res; if (bootverbose) device_printf(child, |