From: Joe Perches Date: Fri, 3 Jun 2011 11:51:21 +0000 (+0000) Subject: include/net: Remove unnecessary semicolons X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=e3cc055c18ab575291acf0af7622a2e97c4728fa;p=deliverable%2Flinux.git include/net: Remove unnecessary semicolons Semicolons are not necessary after switch/while/for/if braces so remove them. Signed-off-by: Joe Perches Signed-off-by: David S. Miller --- diff --git a/include/net/sctp/sctp.h b/include/net/sctp/sctp.h index f9fe374ac9f4..6a72a58cde59 100644 --- a/include/net/sctp/sctp.h +++ b/include/net/sctp/sctp.h @@ -601,7 +601,7 @@ static inline int ipver2af(__u8 ipver) return AF_INET6; default: return 0; - }; + } } /* Convert from an address parameter type to an address family. */ @@ -614,7 +614,7 @@ static inline int param_type2af(__be16 type) return AF_INET6; default: return 0; - }; + } } /* Perform some sanity checks. */