Skip to content

Commit

Permalink
Fix get_pci_ids function name
Browse files Browse the repository at this point in the history
  • Loading branch information
facug91 committed Mar 14, 2024
1 parent 3518e8b commit 50f5e18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/hwinfo/utils/pci.ids.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace hwinfo {

inline std::string get_pcs_ids() {
inline std::string get_pci_ids() {
return R"(#
# List of PCI ID's
#
Expand Down
2 changes: 1 addition & 1 deletion src/PCIMapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const PCIDevice& PCIVendor::operator[](const std::string& device_id) const {

// _____________________________________________________________________________________________________________________
PCIMapper::PCIMapper() {
std::stringstream s_pciid(get_pcs_ids());
std::stringstream s_pciid(get_pci_ids());
PCIVendor* current_vendor = nullptr;
PCIDevice* current_device = nullptr;
while (true) {
Expand Down

0 comments on commit 50f5e18

Please sign in to comment.