mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 09:37:08 -04:00
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.
|
||
|---|---|---|
| .. | ||
| cap.c | ||
| err.c | ||
| Makefile | ||
| pathnames.h | ||
| pciconf.8 | ||
| pciconf.c | ||
| pciconf.h | ||