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

Commit 30c1e39f authored by Luis de Bethencourt's avatar Luis de Bethencourt Committed by Greg Kroah-Hartman
Browse files

staging: lustre: llite: Remove redundant else keyword



There is no need to use 'else' if in main branch 'goto' is present.

Signed-off-by: default avatarLuis de Bethencourt <luisbg@kernel.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ee4bf6ed
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -236,7 +236,9 @@ static int client_common_fill_super(struct super_block *sb, char *md, char *dt,
				   "An MDT (md %s) is performing recovery, of which this client is not a part. Please wait for recovery to complete, abort, or time out.\n",
				   md);
		goto out;
	} else if (err) {
	}

	if (err) {
		CERROR("cannot connect to %s: rc = %d\n", md, err);
		goto out;
	}