mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
With clang 15, the following -Werror warning is produced:
sys/dev/usb/input/atp.c:2018:11: error: variable 'n_vertical_scrolls' set but not used [-Werror,-Wunused-but-set-variable]
u_int8_t n_vertical_scrolls = 0;
^
The 'n_vertical_scrolls' variable is no longer used after
|
||
|---|---|---|
| .. | ||
| atp.c | ||
| uep.c | ||
| uhid.c | ||
| uhid_snes.c | ||
| ukbd.c | ||
| ums.c | ||
| usb_rdesc.h | ||
| usbhid.c | ||
| wmt.c | ||
| wsp.c | ||