From: Ben Gras Date: Tue, 16 Jan 2007 16:52:51 +0000 (+0000) Subject: remove debug (%d) in fsck X-Git-Tag: v3.1.3~110 X-Git-Url: http://zhaoyanbai.com/repos/?a=commitdiff_plain;h=a6ab1cbd34cd6045ce1f3d665aba5f838ea22347;p=minix.git remove debug (%d) in fsck --- 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