freebsd-src/sys/netpfil
Dimitry Andric 5c329f0a4d Suppress unused variable warning in ip_dummynet.c
With clang 15, the following -Werror warning is produced:

    sys/netpfil/ipfw/ip_dummynet.c:802:6: error: variable 'n' set but not used [-Werror,-Wunused-but-set-variable]
            int n = 0; /* only for stats */
                ^

Here, 'n' is a variable that is only used when debugging. Mark the
variable as potentially unused, to suppress the warning.

MFC after:	3 days
2022-07-20 17:13:49 +02:00
..
ipfilter/netinet ipfilter: Support only jails in VNET 2022-07-07 07:53:45 -07:00
ipfw Suppress unused variable warning in ip_dummynet.c 2022-07-20 17:13:49 +02:00
pf