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

Commit 2b239769 authored by Namhyung Kim's avatar Namhyung Kim Committed by Jan Kara
Browse files

jbd: Remove unnecessary goto statement



Remove goto statement which jumps to very next line. Also remove
target label because it is no longer used anywhere.

Signed-off-by: default avatarNamhyung Kim <namhyung@gmail.com>
Signed-off-by: default avatarJan Kara <jack@suse.cz>
parent f81e3d45
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -293,9 +293,7 @@ handle_t *journal_start(journal_t *journal, int nblocks)
		jbd_free_handle(handle);
		current->journal_info = NULL;
		handle = ERR_PTR(err);
		goto out;
	}
out:
	return handle;
}