mirror of
https://github.com/opnsense/src.git
synced 2026-02-16 00:58:21 -05:00
With clang 15, the following -Werror warning is produced:
sys/dev/mwl/if_mwl.c:3445:8: error: variable 'ix' set but not used [-Werror,-Wunused-but-set-variable]
u_int ix;
^
Here, 'ix' is a variable that is only used when debugging. Mark the
variable as potentially unused, to suppress the warning.
MFC after: 3 days
|
||
|---|---|---|
| .. | ||
| if_mwl.c | ||
| if_mwl_pci.c | ||
| if_mwlioctl.h | ||
| if_mwlvar.h | ||
| mwldiag.h | ||
| mwlhal.c | ||
| mwlhal.h | ||
| mwlreg.h | ||