Skip to content

Commit d0843d5

Browse files
committed
fix minor mistake
1 parent 73ef893 commit d0843d5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ftx_prog.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ const struct args_required_t req_info[] =
150150
{arg_help, 0},
151151
{arg_dump, 0},
152152
{arg_verbose, 0},
153-
{arg_verbose, 1},
154153
{arg_save, 1},
155154
{arg_restore, 1},
156155
{arg_8b_strings, 0},
@@ -549,7 +548,7 @@ static unsigned short verify_crc (void *addr, int len)
549548

550549
if (crc != actual) {
551550
fprintf(stderr, "Bad CRC: crc=0x%04x, actual=0x%04x\n", crc, actual);
552-
exit(EINVAL);
551+
exit(EINVAL);
553552
}
554553
if (verbose) printf("CRC: Okay (0x%04x)\n", crc);
555554
return crc;

0 commit comments

Comments
 (0)