Skip to content

Commit

Permalink
Merge pull request #4 from f1rmb/fix_compilation
Browse files Browse the repository at this point in the history
Make it compile.
  • Loading branch information
sq5bpf committed Aug 17, 2023
2 parents 03cc17b + 589787d commit 15e1dde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion k5prog.c
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ int main(int argc,char **argv)
exit(1);
}
if ((write_length>0)&&((write_length+write_offset)>=UVK5_MAX_FLASH_SIZE)) {
fprintf(stderr,"write_length+write_offset is bigger than the flash size\n",file,flash_length);
fprintf(stderr,"write_length (%d) + write_offset (%d) is bigger than the flash size (%d)\n", write_length, write_offset, UVK5_MAX_FLASH_SIZE);
exit(1);
}
close(ffd);
Expand Down

0 comments on commit 15e1dde

Please sign in to comment.