diff options
author | Joe Perches <joe@perches.com> | 2011-06-03 15:51:19 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-06-06 01:33:39 +0400 |
commit | f81c62242045fb7be0a124d8c2540af96d842fad (patch) | |
tree | 7d5f4ed1e991f3b493f9d8cafa97bd10ff73675e /net/sunrpc/auth.c | |
parent | 827d978037d7d0bf0860481948c6d26ead10042f (diff) | |
download | linux-f81c62242045fb7be0a124d8c2540af96d842fad.tar.xz |
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 'net/sunrpc/auth.c')
-rw-r--r-- | net/sunrpc/auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/auth.c b/net/sunrpc/auth.c index cd6e4aa19dbf..727e506cacda 100644 --- a/net/sunrpc/auth.c +++ b/net/sunrpc/auth.c @@ -626,7 +626,7 @@ rpcauth_refreshcred(struct rpc_task *task) if (err < 0) goto out; cred = task->tk_rqstp->rq_cred; - }; + } dprintk("RPC: %5u refreshing %s cred %p\n", task->tk_pid, cred->cr_auth->au_ops->au_name, cred); |