Introduced in 454b849c7de18a7b44eecebe889f5f3149d24780 ("batman-adv: print the VID properly")
Signed-off-by: Antonio Quartulli ordex@autistici.org --- main.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/main.h b/main.h index 68c7ee0..834b1a0 100644 --- a/main.h +++ b/main.h @@ -173,7 +173,7 @@ enum batadv_vlan_flags { };
#define BATADV_PRINT_VID(vid) (vid & BATADV_VLAN_HAS_TAG ? \ - (int)(vid & BATADV_VID_MASK) : -1) + (int)(vid & VLAN_VID_MASK) : -1)
extern char batadv_routing_algo[]; extern struct list_head batadv_hardif_list;