OSDN Git Service

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)
commit6b9aadfa97efa5a73c005c5c4c667359a0c85bec
tree97162dfad9a7797045d2e841a07aa80ef9a65654
parentd1829fa0c380ccf48a7b96795a6d4a01698d02a6
batman-adv: Don't return value in void function

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