diff options
author | zhong jiang <zhongjiang@huawei.com> | 2018-08-04 07:41:41 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-08-04 16:05:39 -0400 |
commit | 07d53ae4fbdf7458f4d51249aa24d75c76fe52a8 (patch) | |
tree | a562c5234dc209c7b4155565f4550dbbe6e55ff6 /net/sunrpc | |
parent | a01512b14d4faa9f6f7501201d7033216d2e563a (diff) |
net: Remove some unneeded semicolon
These semicolons are not needed. Just remove them.
Signed-off-by: zhong jiang <zhongjiang@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sunrpc')
-rw-r--r-- | net/sunrpc/auth_gss/auth_gss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/auth_gss/auth_gss.c b/net/sunrpc/auth_gss/auth_gss.c index be8f103d22fd..0fc397fae42b 100644 --- a/net/sunrpc/auth_gss/auth_gss.c +++ b/net/sunrpc/auth_gss/auth_gss.c | |||
@@ -517,7 +517,7 @@ gss_alloc_msg(struct gss_auth *gss_auth, | |||
517 | err = gss_encode_v1_msg(gss_msg, service_name, gss_auth->target_name); | 517 | err = gss_encode_v1_msg(gss_msg, service_name, gss_auth->target_name); |
518 | if (err) | 518 | if (err) |
519 | goto err_put_pipe_version; | 519 | goto err_put_pipe_version; |
520 | }; | 520 | } |
521 | kref_get(&gss_auth->kref); | 521 | kref_get(&gss_auth->kref); |
522 | return gss_msg; | 522 | return gss_msg; |
523 | err_put_pipe_version: | 523 | err_put_pipe_version: |