From df361363011a1d68e78e31c0f10e9606a79cdb12 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Thu, 21 Jun 2007 13:31:13 -0400 Subject: [PATCH] Fix gcc -Wall bug in e2fsck Remove extraneous return after fatal_error(). Signed-off-by: "Theodore Ts'o" --- e2fsck/unix.c | 1 - 1 file changed, 1 deletion(-) diff --git a/e2fsck/unix.c b/e2fsck/unix.c index b01a62a..5a617d9 100644 --- a/e2fsck/unix.c +++ b/e2fsck/unix.c @@ -1023,7 +1023,6 @@ restart: fix_problem(ctx, PR_0_GETSIZE_ERROR, &pctx); ctx->flags |= E2F_FLAG_ABORT; fatal_error(ctx, 0); - return; } ctx->flags |= E2F_FLAG_GOT_DEVSIZE; if (need_restart) -- 1.8.3.1