diff options
author | Sven Eckelmann <sven@narfation.org> | 2012-06-19 20:26:30 +0200 |
---|---|---|
committer | Antonio Quartulli <ordex@autistici.org> | 2012-07-01 22:47:23 +0200 |
commit | 0aca2369b19de3f3f1affcc5359c3d079e4e1940 (patch) | |
tree | 25b5cbe82d95a4d79c20e05dc5adbd0d59624004 /net/batman-adv/routing.c | |
parent | batman-adv: Remove space before semicolon (diff) | |
download | linux-0aca2369b19de3f3f1affcc5359c3d079e4e1940.tar.xz linux-0aca2369b19de3f3f1affcc5359c3d079e4e1940.zip |
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, ETH_HLEN) < 0) return 0; - ethhdr = (struct ethhdr *)(skb->data + - sizeof(struct batadv_unicast_packet)); + ethhdr = (struct ethhdr *)(skb->data + sizeof(*unicast_packet)); /* we don't have an updated route for this client, so we should * not try to reroute the packet!! |