freebsd-skq/usr.sbin/pciconf
dim 51dfb55a00 Fix the following clang 3.6.0 warnings in pciconf:
usr.sbin/pciconf/pciconf.c:237:12: error: address of array 'p->pd_name' will
always evaluate to 'true' [-Werror,-Wpointer-bool-conversion]
                            (p->pd_name && *p->pd_name) ? p->pd_name :
                             ~~~^~~~~~~ ~~
usr.sbin/pciconf/pciconf.c:239:12: error: address of array 'p->pd_name' will
always evaluate to 'true' [-Werror,-Wpointer-bool-conversion]
                            (p->pd_name && *p->pd_name) ? (int)p->pd_unit :
                             ~~~^~~~~~~ ~~

The pd_name field of struct pci_conf is an array, so it can never be null.
Remove the unnecessary check.
2015-01-28 21:21:35 +00:00
..
cap.c Print status of ARI capability in pciconf -c 2014-04-01 16:03:52 +00:00
err.c
Makefile
pathnames.h
pciconf.8
pciconf.c Fix the following clang 3.6.0 warnings in pciconf: 2015-01-28 21:21:35 +00:00
pciconf.h