diff options
Diffstat (limited to 'toys/other')
-rw-r--r-- | toys/other/lspci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/lspci.c b/toys/other/lspci.c index 6a265a1d..c9b22abf 100644 --- a/toys/other/lspci.c +++ b/toys/other/lspci.c @@ -53,7 +53,7 @@ int do_lspci(struct dirtree *new) // it's ok for the driver link not to be there, whatever fortify says *driver = 0; if (toys.optflags & FLAG_k) - if (readlinkat(dirfd, "driver", driver, sizeof(driver))); + if (readlinkat(dirfd, "driver", driver, sizeof(driver))) {}; for (fields = (char*[]){"class", "vendor", "device", 0}; *fields; fields++) { int fd, size = 6 + 2*((toys.optflags & FLAG_e) && p == toybuf); |