diff options
author | Joe Perches <joe@perches.com> | 2011-06-03 07:51:20 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-06-05 17:33:40 -0400 |
commit | 6403eab143205a45a5493166ff8bf7e3646f4a77 (patch) | |
tree | 7c35249aa9edf24ae0440eaae648bbf1bc831f55 /drivers/net/slhc.c | |
parent | f81c62242045fb7be0a124d8c2540af96d842fad (diff) |
drivers/net: Remove unnecessary semicolons
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>
Diffstat (limited to 'drivers/net/slhc.c')
-rw-r--r-- | drivers/net/slhc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/slhc.c b/drivers/net/slhc.c index ab9e3b785b5b..0a0a6643cf3a 100644 --- a/drivers/net/slhc.c +++ b/drivers/net/slhc.c | |||
@@ -297,7 +297,7 @@ slhc_compress(struct slcompress *comp, unsigned char *icp, int isize, | |||
297 | lcs = cs; | 297 | lcs = cs; |
298 | cs = cs->next; | 298 | cs = cs->next; |
299 | comp->sls_o_searches++; | 299 | comp->sls_o_searches++; |
300 | }; | 300 | } |
301 | /* | 301 | /* |
302 | * Didn't find it -- re-use oldest cstate. Send an | 302 | * Didn't find it -- re-use oldest cstate. Send an |
303 | * uncompressed packet that tells the other side what | 303 | * uncompressed packet that tells the other side what |