diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-28 19:40:03 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-28 19:40:03 -0400 |
commit | 974f36ef5abc3e7d9a766f09af675ae42abbe4aa (patch) | |
tree | 6490cffd0a75dcb5d889c10b65acf11fd87f59ec /src | |
parent | a50d2c5dfdb50ae62d4a4aec81c6bbdf72f08542 (diff) |
kern: pci: Remove redundant semicolon
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/sys/io/pci/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys/io/pci/pci.c b/src/sys/io/pci/pci.c index 915d943..23aa82c 100644 --- a/src/sys/io/pci/pci.c +++ b/src/sys/io/pci/pci.c @@ -75,7 +75,7 @@ pci_vd_match(struct pci_device *vda, struct pci_device *vdb) /* The actual match */ if (vda->device != vdb->device) return -1; - if (vda->vendor != vdb->vendor); + if (vda->vendor != vdb->vendor) return -1; return 0; |