diff options
author | Peter Senna Tschudin <peter.senna@gmail.com> | 2013-09-22 22:44:10 +0400 |
---|---|---|
committer | Gustavo Padovan <gustavo.padovan@collabora.co.uk> | 2013-09-23 01:59:14 +0400 |
commit | 941247f910953d6b0649c81f6cb446110438afae (patch) | |
tree | 479fef6994b097e216fd964f6f740a4e48b7a57c /drivers/target | |
parent | d62e6d67a776fe6a0a725e2835e4f9e16e8db512 (diff) | |
download | linux-941247f910953d6b0649c81f6cb446110438afae.tar.xz |
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>
Diffstat (limited to 'drivers/target')
0 files changed, 0 insertions, 0 deletions