From: Luis de Bethencourt Date: Tue, 16 Jan 2018 15:03:32 +0000 (+0000) Subject: vxlan: Fix trailing semicolon X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5ef7e0ba1039d65c4eefde92056769548b214273;p=linux.git 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: 5f35227ea34b ("net: Generalize ndo_gso_check to ndo_features_check") Signed-off-by: Luis de Bethencourt Acked-by: Stephen Hemminger Signed-off-by: David S. Miller --- diff --git a/include/net/vxlan.h b/include/net/vxlan.h index f96391e84a8a3..ad73d8b3fcc25 100644 --- a/include/net/vxlan.h +++ b/include/net/vxlan.h @@ -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) &&