]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
batman-adv: Don't return value in void function
authorSven Eckelmann <sven@narfation.org>
Sat, 4 Jun 2011 10:40:37 +0000 (12:40 +0200)
committerSven Eckelmann <sven@narfation.org>
Thu, 9 Jun 2011 18:40:38 +0000 (20:40 +0200)
gw_node_delete is defined with "void" as return type, but still tries to
return a value. The called function gw_node_delete is also return as
void and thus doesn't provide a value for us.

Signed-off-by: Sven Eckelmann <sven@narfation.org>
net/batman-adv/gateway_client.c

index ab597c4f9dddcdab30efa77d297776b315b07e54..cf7f95e9a95200c318f0eb5a314f6c219ba2ef9b 100644 (file)
@@ -352,7 +352,7 @@ unlock:
 
 void gw_node_delete(struct bat_priv *bat_priv, struct orig_node *orig_node)
 {
-       return gw_node_update(bat_priv, orig_node, 0);
+       gw_node_update(bat_priv, orig_node, 0);
 }
 
 void gw_node_purge(struct bat_priv *bat_priv)