diff options
author | ache <ache@FreeBSD.org> | 1997-02-05 07:23:56 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-02-05 07:23:56 +0000 |
commit | 772103bb73a263180de1229cae566c94d147301c (patch) | |
tree | 52184fc2813dbfbc68d6e8d6f5adbca63e0924c8 /sys/pci | |
parent | a8f323140e8b0287481f709166302d548ac1819e (diff) | |
download | FreeBSD-src-772103bb73a263180de1229cae566c94d147301c.zip FreeBSD-src-772103bb73a263180de1229cae566c94d147301c.tar.gz |
Fix misspelled variable name, -current build stopper
Diffstat (limited to 'sys/pci')
-rw-r--r-- | sys/pci/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/pci/pci.c b/sys/pci/pci.c index a1b295b..399cfe6 100644 --- a/sys/pci/pci.c +++ b/sys/pci/pci.c @@ -957,7 +957,7 @@ int pci_register_lkm (struct pci_device *dvp, int if_revision) { struct pci_lkm *lkm; - if (if_version != 0) { + if (if_revision != 0) { return -1; } |