mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 17:49:22 -04:00
With clang 15, the following -Werror warning is produced:
sys/netinet/tcp_stacks/rack.c:17405:12: error: variable 'outstanding' set but not used [-Werror,-Wunused-but-set-variable]
uint32_t outstanding;
^
The 'outstanding' variable was used later in the rack_output() function,
but refactoring in
|
||
|---|---|---|
| .. | ||
| bbr.c | ||
| rack.c | ||
| rack_bbr_common.c | ||
| rack_bbr_common.h | ||
| sack_filter.c | ||
| sack_filter.h | ||
| tcp_bbr.h | ||
| tcp_rack.h | ||