Commit 1351975a authored by Alexander Aring's avatar Alexander Aring Committed by David Teigland
Browse files

fs: dlm: don't init error value



This patch removes a init of an error value to -EINVAL which is not
necessary.

Signed-off-by: default avatarAlexander Aring <aahringo@redhat.com>
Signed-off-by: default avatarDavid Teigland <teigland@redhat.com>
parent c852a6d7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1830,7 +1830,7 @@ static const struct dlm_proto_ops dlm_sctp_ops = {

int dlm_lowcomms_start(void)
{
	int error = -EINVAL;
	int error;

	init_local();
	if (!dlm_local_count) {