disassembler: Improve header error messages
authorMichael Buesch <mb@bu3sch.de>
Mon, 20 Sep 2010 18:06:14 +0000 (20:06 +0200)
committerMichael Buesch <mb@bu3sch.de>
Mon, 20 Sep 2010 18:06:14 +0000 (20:06 +0200)
Signed-off-by: Michael Buesch <mb@bu3sch.de>
disassembler/main.c

index cf716df8fb9b21bb14812a8428f9549965d792f3..09e7643038b64f4d963bc5a9fe255269e80938ae 100644 (file)
@@ -857,11 +857,11 @@ static int read_input(struct disassembler_context *ctx)
        case FMT_B43:
                ret = fread(&hdr, 1, sizeof(hdr), infile);
                if (ret != sizeof(hdr)) {
-                       fprintf(stderr, "Corrupt input file (not fwcutter output)\n");
+                       fprintf(stderr, "Corrupt input file (no b43 header found)\n");
                        goto err_close;
                }
                if (hdr.type != FW_TYPE_UCODE) {
-                       fprintf(stderr, "Corrupt input file. Not a microcode image.\n");
+                       fprintf(stderr, "Corrupt input file. Not a b43 microcode image.\n");
                        goto err_close;
                }
                if (hdr.ver != FW_HDR_VER) {