aboutsummaryrefslogtreecommitdiffstats
path: root/net/batman-adv/gateway_client.c
diff options
context:
space:
mode:
authorSven Eckelmann <sven@narfation.org>2011-06-15 03:41:37 -0400
committerSven Eckelmann <sven@narfation.org>2011-06-20 05:37:18 -0400
commitb4e1705417c6cc7d46d9020259a2c8f457cf82bd (patch)
treed057a27c91d0bce396726878a6c8995f0d5b0d3b /net/batman-adv/gateway_client.c
parentb2c44a53836559b5e2823aa215c979c33bc9e2db (diff)
batman-adv: Reduce usage of char
char was used in different places to store information without really using the characteristics of that data type or by ignoring the fact that char has not a well defined signedness. Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'net/batman-adv/gateway_client.c')
-rw-r--r--net/batman-adv/gateway_client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/gateway_client.c b/net/batman-adv/gateway_client.c
index 24aee561f3d8..7248de2e66dc 100644
--- a/net/batman-adv/gateway_client.c
+++ b/net/batman-adv/gateway_client.c
@@ -360,7 +360,7 @@ void gw_node_purge(struct bat_priv *bat_priv)
360 struct gw_node *gw_node, *curr_gw; 360 struct gw_node *gw_node, *curr_gw;
361 struct hlist_node *node, *node_tmp; 361 struct hlist_node *node, *node_tmp;
362 unsigned long timeout = 2 * PURGE_TIMEOUT * HZ; 362 unsigned long timeout = 2 * PURGE_TIMEOUT * HZ;
363 char do_deselect = 0; 363 int do_deselect = 0;
364 364
365 curr_gw = gw_get_selected_gw_node(bat_priv); 365 curr_gw = gw_get_selected_gw_node(bat_priv);
366 366