Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 22403d9e authored by Sun Wang's avatar Sun Wang Committed by Greg Kroah-Hartman
Browse files

staging: lustre: lustre: mdc: mdc_reint: fix coding style issue



Coding style issues, the changes include:
-Remove '{}'

Signed-off-by: default avatarSun Wang <sunwxg@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e8291974
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -57,9 +57,9 @@ static int mdc_reint(struct ptlrpc_request *request,
	mdc_put_rpc_lock(rpc_lock, NULL);
	if (rc)
		CDEBUG(D_INFO, "error in handling %d\n", rc);
	else if (!req_capsule_server_get(&request->rq_pill, &RMF_MDT_BODY)) {
	else if (!req_capsule_server_get(&request->rq_pill, &RMF_MDT_BODY))
		rc = -EPROTO;
	}

	return rc;
}