From a6ab1cbd34cd6045ce1f3d665aba5f838ea22347 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Tue, 16 Jan 2007 16:52:51 +0000 Subject: [PATCH] remove debug (%d) in fsck --- commands/simple/fsck.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/simple/fsck.c b/commands/simple/fsck.c index 14cadc6bd..73361def3 100755 --- a/commands/simple/fsck.c +++ b/commands/simple/fsck.c @@ -776,9 +776,9 @@ bit_nr phys; *report = 0; else if (*report) if ((w1 & 1) && !(w2 & 1)) - printf("%s %ld (%ld) is missing\n", type, bit, phys); + printf("%s %ld is missing\n", type, bit); else if (!(w1 & 1) && (w2 & 1)) - printf("%s %ld (%ld) is not free\n", type, bit, phys); + printf("%s %ld is not free\n", type, bit); } /* Check if the given (correct) bitmap is identical with the one that is -- 2.44.0