From 99b969067ed6ccd350a427163a078740a9a4a1f8 Mon Sep 17 00:00:00 2001 From: deepend Date: Wed, 25 Feb 2026 13:29:20 -0700 Subject: [PATCH] Removed one stale, commented-out debug/error line in the PCI device-name lookup path (pci_find_fullname), leaving behavior unchanged and making the function cleaner. --- plugins/sysinfo/unix/pci.c | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/sysinfo/unix/pci.c b/plugins/sysinfo/unix/pci.c index 528afd97..fac2f76e 100644 --- a/plugins/sysinfo/unix/pci.c +++ b/plugins/sysinfo/unix/pci.c @@ -132,7 +132,6 @@ void pci_find_fullname(char *fullname, char *vendor, char *device) if(fp == NULL) { g_snprintf(fullname, bsize, "%s:%s", vendor, device); - //sysinfo_print_error ("pci.ids file not found! You might want to adjust your pciids setting with /SYSINFO SET pciids (you can query its current value with /SYSINFO LIST).\n"); return; }