Repository : ssh://git@open-mesh.org/batctl
On branch : master
commit f33fcd085b07f6917b75f9c534f491392732559b Author: Antonio Quartulli antonio@meshcoding.com Date: Sat Feb 22 16:20:06 2014 +0100
batctl: properly align constant assignments
All the assignments in packet.h are properly aligned. Also the multicast constants have to have a similar shape.
Introduced by 1c090349e2f65d19a7f356cc0b61f13644c53bb6 ("batman-adv: Add IPv4 link-local/IPv6-ll-all-nodes multicast support")
Signed-off-by: Antonio Quartulli antonio@meshcoding.com Signed-off-by: Marek Lindner mareklindner@neomailbox.ch
f33fcd085b07f6917b75f9c534f491392732559b packet.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/packet.h b/packet.h index feaa336..c7f6eef 100644 --- a/packet.h +++ b/packet.h @@ -97,9 +97,9 @@ enum batadv_icmp_packettype { * @BATADV_MCAST_WANT_ALL_IPV6: we want all IPv6 multicast packets */ enum batadv_mcast_flags { - BATADV_MCAST_WANT_ALL_UNSNOOPABLES = BIT(0), - BATADV_MCAST_WANT_ALL_IPV4 = BIT(1), - BATADV_MCAST_WANT_ALL_IPV6 = BIT(2), + BATADV_MCAST_WANT_ALL_UNSNOOPABLES = BIT(0), + BATADV_MCAST_WANT_ALL_IPV4 = BIT(1), + BATADV_MCAST_WANT_ALL_IPV6 = BIT(2), };
/* tt data subtypes */