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 <neilb@suse.de>
This commit is contained in:
NeilBrown 2010-01-28 08:55:18 +11:00
parent 4d0b563b5b
commit 080fd00521
1 changed files with 4 additions and 2 deletions

6
Grow.c
View File

@ -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<len; i++)
if (bbuf[i] != abuf[i]) {
printf("first diff byte %d\n", i);
break;
}
#endif
fail("data1 compare failed");
}
}