From dca897a2ccd4084f034f5e82136743bdcc94a449 Mon Sep 17 00:00:00 2001 From: Jean Delvare Date: Fri, 16 Mar 2007 07:09:16 +0000 Subject: Stop asking the user to report bad checksums, unaligned records and the like. Such machines exist, too bad, we have to live with it. --- vpddecode.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'vpddecode.c') diff --git a/vpddecode.c b/vpddecode.c index 4e00263..b09b378 100644 --- a/vpddecode.c +++ b/vpddecode.c @@ -102,7 +102,7 @@ static int decode(const u8 *p) and 345 with early BIOS) but the record is otherwise valid. */ if(!(opt.flags & FLAG_QUIET)) - printf("Bad checksum! Please report.\n"); + printf("# Bad checksum!\n"); } if(opt.string!=NULL) @@ -126,8 +126,7 @@ static int decode(const u8 *p) if(p[5]>=0x46 && p[0x44]!=0x00) { - printf("%s: %u (Please report!)\n", "BIOS Revision", - p[0x44]); + printf("%s: %u\n", "BIOS Revision", p[0x44]); } return 1; @@ -178,7 +177,7 @@ int main(int argc, char * const argv[]) && fp+p[5]-1<=0xFFFF) { if(fp%16 && !(opt.flags & FLAG_QUIET)) - printf("Unaligned address (%#x), please report!\n", + printf("# Unaligned address (%#x)\n", 0xf0000+fp); if(opt.flags & FLAG_DUMP) { -- cgit v1.2.1