]> Pileus Git - ~andy/linux/commit
Bluetooth: Fix assignment of 0/1 to bool variables
authorPeter Senna Tschudin <peter.senna@gmail.com>
Sun, 22 Sep 2013 18:44:10 +0000 (20:44 +0200)
committerGustavo Padovan <gustavo.padovan@collabora.co.uk>
Sun, 22 Sep 2013 21:59:14 +0000 (16:59 -0500)
commit941247f910953d6b0649c81f6cb446110438afae
tree479fef6994b097e216fd964f6f740a4e48b7a57c
parentd62e6d67a776fe6a0a725e2835e4f9e16e8db512
Bluetooth: Fix assignment of 0/1 to bool variables

Convert 0 to false and 1 to true when assigning values to bool
variables. Inspired by commit 3db1cd5c05f35fb43eb134df6f321de4e63141f2.

The simplified semantic patch that find this problem is as
follows (http://coccinelle.lip6.fr/):

@@
bool b;
@@
(
-b = 0
+b = false
|
-b = 1
+b = true
)

Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
net/bluetooth/l2cap_core.c