Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5ef7e0ba authored by Luis de Bethencourt's avatar Luis de Bethencourt Committed by David S. Miller
Browse files

vxlan: Fix trailing semicolon



The trailing semicolon is an empty statement that does no operation.
It is completely stripped out by the compiler. Removing it since it doesn't do
anything.

Fixes: 5f35227e ("net: Generalize ndo_gso_check to ndo_features_check")
Signed-off-by: default avatarLuis de Bethencourt <luisbg@kernel.org>
Acked-by: default avatarStephen Hemminger <stephen@networkplumber.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent baf50868
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -301,7 +301,7 @@ static inline netdev_features_t vxlan_features_check(struct sk_buff *skb,
		l4_hdr = ipv6_hdr(skb)->nexthdr;
		break;
	default:
		return features;;
		return features;
	}

	if ((l4_hdr == IPPROTO_UDP) &&