1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-22 07:20:00 +00:00

bthidd: declare appropriate size bitstring

The bitstring declared on the stack was much too large, and gcc noticed
that we weren't memset()ing all of it.  This one was harmless.

Reported by:	GCC -Wmemset-elt-size
Reviewed by:	imp
Differential Revision:	https://reviews.freebsd.org/D45900
This commit is contained in:
Ryan Libby 2024-07-09 11:00:33 -07:00
parent f0a7df4a6c
commit 6bd85498ec

View File

@ -339,7 +339,7 @@ kbd_maxkey(void)
int32_t
kbd_process_keys(bthid_session_p s)
{
bitstr_t diff[bitstr_size(xsize)];
bitstr_t bit_decl(diff, xsize);
int32_t f1, f2, i;
assert(s != NULL);