From patchwork Tue Feb 8 15:25:00 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: UBIFS: fix LEB number in printk Date: Tue, 08 Feb 2011 05:25:00 -0000 From: Artem Bityutskiy X-Patchwork-Id: 82351 Message-Id: <1297178700-8297-1-git-send-email-dedekind1@gmail.com> To: "linux-mtd@lists.infradead.org" From: Artem Bityutskiy This is a minor patch which fixes the LEB number we print when corrupted empty space is found. Signed-off-by: Artem Bityutskiy --- fs/ubifs/recovery.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/ubifs/recovery.c b/fs/ubifs/recovery.c index 6ecbc91..e2714f8 100644 --- a/fs/ubifs/recovery.c +++ b/fs/ubifs/recovery.c @@ -695,7 +695,7 @@ struct ubifs_scan_leb *ubifs_recover_leb(struct ubifs_info *c, int lnum, ubifs_err("corrupt empty space LEB %d:%d, corruption " "starts at %d", lnum, offs, corruption); /* Make sure we dump interesting non-0xFF data */ - offs = corruption; + offs += corruption; buf += corruption; goto corrupted; }