Skip to content

Commit

Permalink
include/net: Remove unnecessary semicolons
Browse files Browse the repository at this point in the history
Semicolons are not necessary after switch/while/for/if braces
so remove them.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Joe Perches authored and David S. Miller committed Jun 5, 2011
1 parent 6403eab commit e3cc055
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/net/sctp/sctp.h
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand All @@ -614,7 +614,7 @@ static inline int param_type2af(__be16 type)
return AF_INET6;
default:
return 0;
};
}
}

/* Perform some sanity checks. */
Expand Down

0 comments on commit e3cc055

Please sign in to comment.