]> Zhao Yanbai Git Server - minix.git/commitdiff
remove debug (%d) in fsck
authorBen Gras <ben@minix3.org>
Tue, 16 Jan 2007 16:52:51 +0000 (16:52 +0000)
committerBen Gras <ben@minix3.org>
Tue, 16 Jan 2007 16:52:51 +0000 (16:52 +0000)
commands/simple/fsck.c

index 14cadc6bd23cb31011851f78ab4d2320ccc098f7..73361def3d5e9bff5a9d324b9f79364aae49a30a 100755 (executable)
@@ -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