Peter Senna Tschudin 34a6eda163 net: ipv4: Change variable type to bool
The variable fully_acked is only assigned the values true and false.
Change its type to bool.

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

@exists@
type T;
identifier b;
@@
- T
+ bool
  b = ...;
  ... when any
  b = \(true\|false\)

Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2013-10-03 15:40:34 -04:00
..
2013-09-03 21:41:43 -04:00
2012-10-08 17:42:36 -04:00
2013-09-03 21:41:43 -04:00
2013-10-02 16:45:17 -04:00
2013-09-30 20:41:57 -07:00
2013-03-21 11:47:50 -04:00
2013-03-21 11:47:50 -04:00
2013-05-31 17:19:05 -07:00