diff options
author | Sven Eckelmann <sven@narfation.org> | 2012-06-19 14:26:30 -0400 |
---|---|---|
committer | Antonio Quartulli <ordex@autistici.org> | 2012-07-01 16:47:23 -0400 |
commit | 0aca2369b19de3f3f1affcc5359c3d079e4e1940 (patch) | |
tree | 25b5cbe82d95a4d79c20e05dc5adbd0d59624004 /net/batman-adv/routing.c | |
parent | cb4cca7103ea29b9296a85fe45966e7d95669ee1 (diff) |
batman-adv: Fix alignment after opened parentheses
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Antonio Quartulli <ordex@autistici.org>
Diffstat (limited to 'net/batman-adv/routing.c')
-rw-r--r-- | net/batman-adv/routing.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/batman-adv/routing.c b/net/batman-adv/routing.c index b79e42e0c0b5..bc2b88bbea1f 100644 --- a/net/batman-adv/routing.c +++ b/net/batman-adv/routing.c | |||
@@ -969,8 +969,7 @@ static int batadv_check_unicast_ttvn(struct batadv_priv *bat_priv, | |||
969 | ETH_HLEN) < 0) | 969 | ETH_HLEN) < 0) |
970 | return 0; | 970 | return 0; |
971 | 971 | ||
972 | ethhdr = (struct ethhdr *)(skb->data + | 972 | ethhdr = (struct ethhdr *)(skb->data + sizeof(*unicast_packet)); |
973 | sizeof(struct batadv_unicast_packet)); | ||
974 | 973 | ||
975 | /* we don't have an updated route for this client, so we should | 974 | /* we don't have an updated route for this client, so we should |
976 | * not try to reroute the packet!! | 975 | * not try to reroute the packet!! |