[maint,1/2] batman-adv: fix alignment

Message ID 1400144887-24455-1-git-send-email-antonio@meshcoding.com (mailing list archive)
State Accepted, archived
Commit bc089ef4b36b6633cf38a6a4fa4bea9ff2b2965d
Headers

Commit Message

Antonio Quartulli May 15, 2014, 9:08 a.m. UTC
  Introduced by 9729d2085c0fa4398eb1ee518b0097866dfdcd77
("batman-adv: fix TT VLAN inconsistency on VLAN re-add")

Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
---
 soft-interface.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
  

Comments

Marek Lindner May 15, 2014, 6:55 p.m. UTC | #1
On Thursday 15 May 2014 11:08:06 Antonio Quartulli wrote:
> Introduced by 9729d2085c0fa4398eb1ee518b0097866dfdcd77
> ("batman-adv: fix TT VLAN inconsistency on VLAN re-add")
> 
> Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
> ---
>  soft-interface.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Applied in revision bc089ef.

Thanks,
Marek
  

Patch

diff --git a/soft-interface.c b/soft-interface.c
index 5a9dc2f..82804e7 100644
--- a/soft-interface.c
+++ b/soft-interface.c
@@ -594,8 +594,8 @@  static int batadv_interface_add_vid(struct net_device *dev, __be16 proto,
 	 * exists, because the entry was deleted by kill_vid()
 	 */
 	batadv_tt_local_add(bat_priv->soft_iface,
-			     bat_priv->soft_iface->dev_addr, vid,
-			     BATADV_NULL_IFINDEX, BATADV_NO_MARK);
+			    bat_priv->soft_iface->dev_addr, vid,
+			    BATADV_NULL_IFINDEX, BATADV_NO_MARK);
 
 	return 0;
 }