Thread (3 messages) 3 messages, 3 authors, 2013-09-22

Re: [PATCH 2/5] Bluetooth: Fix assignment of 0/1 to bool variables

From: Marcel Holtmann <marcel@holtmann.org>
Date: 2013-09-22 18:59:01
Also in: kernel-janitors, lkml, netdev

Hi Peter,
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>

---
net/bluetooth/l2cap_core.c |   16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
Acked-by: Marcel Holtmann <marcel@holtmann.org>

Regards

Marcel
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help