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

Commit 38b95bcf authored by Dan Carpenter's avatar Dan Carpenter Committed by Anna Schumaker
Browse files

xprtrdma: clean up some curly braces



It doesn't matter either way, but the curly braces were clearly intended
here.  It causes a Smatch warning.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarAnna Schumaker <Anna.Schumaker@Netapp.com>
parent 9f9499ae
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -852,12 +852,13 @@ rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)

		if (extras) {
			rc = rpcrdma_ep_post_extra_recv(r_xprt, extras);
			if (rc)
			if (rc) {
				pr_warn("%s: rpcrdma_ep_post_extra_recv: %i\n",
					__func__, rc);
				rc = 0;
			}
		}
	}

out:
	if (rc)