freebsd-skq/usr.sbin/bluetooth/bthidd
eadler ec294fd7f5 MFC r258779,r258780,r258787,r258822:
Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit.  Instead use (1U << 31) which gets the
expected result.

Similar to the (1 << 31) case it is not defined to do (2 << 30).

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.
2014-02-04 03:36:42 +00:00
..
bthid_config.h
bthidd.8
bthidd.c
bthidd.conf.sample
bthidd.h
client.c
hid.c Encode horizontal scroll events (AC Pan) as button presses (bit 5 and 6) 2011-05-04 17:58:15 +00:00
kbd.c MFC r258779,r258780,r258787,r258822: 2014-02-04 03:36:42 +00:00
kbd.h
lexer.l Work around build breakages with GCC 4.2. 2013-05-23 05:42:35 +00:00
Makefile Add the Clang specific -Wmissing-variable-declarations to WARNS=6. 2013-04-19 19:45:00 +00:00
parser.y Fix world after byacc import: 2012-05-22 16:33:10 +00:00
server.c
session.c