From: NeilBrown Date: Wed, 27 Jan 2010 21:55:18 +0000 (+1100) Subject: Remove stray debugging printfs X-Git-Tag: mdadm-3.1.2~58 X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fmdadm.git;a=commitdiff_plain;h=080fd00521590cef01e4b6d8268fd998e15698cf Remove stray debugging printfs These were never supposed to be released, and due to a type issue they cause compile problems on some architectures. Resolves-Debian-Bug: 567167 Signed-off-by: NeilBrown --- diff --git a/Grow.c b/Grow.c index d8d91cbc..8d9853b2 100644 --- a/Grow.c +++ b/Grow.c @@ -1437,21 +1437,23 @@ static void validate(int afd, int bfd, unsigned long long offset) lseek64(bfd, offset, 0); if (read(bfd, bbuf, len) != len) { - printf("len %llu\n", len); + //printf("len %llu\n", len); fail("read first backup failed"); } lseek64(afd, __le64_to_cpu(bsb2.arraystart)*512, 0); if (read(afd, abuf, len) != len) fail("read first from array failed"); if (memcmp(bbuf, abuf, len) != 0) { + #if 0 int i; printf("offset=%llu len=%llu\n", - __le64_to_cpu(bsb2.arraystart)*512, len); + (unsigned long long)__le64_to_cpu(bsb2.arraystart)*512, len); for (i=0; i