Skip to content

Commit

Permalink
Merge pull request #101 from throwaway96/oops-20240112
Browse files Browse the repository at this point in the history
Fix a mistake I made while cleaning up EPKv1
  • Loading branch information
smx-smx authored Jan 13, 2024
2 parents e7149d6 + 5868f5c commit 3cfcf98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/epk1.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ void extract_epk1_file(const char *epk_file, config_opts_t *config_opts) {
struct epk1BEVersion_t *fwVer = buffer + epakHeader->offset - 4;

if (fwVer->pad != 0) {
printf("Note: Padding byte is not zero (0x" PRIx8 ")!", fwVer->pad);
printf("Note: Padding byte is not zero (0x%" PRIx8 ")!\n", fwVer->pad);
}

sprintf(verString, EPKV1_VERSION_FORMAT, fwVer->major, fwVer->minor1, fwVer->minor2);
Expand Down

0 comments on commit 3cfcf98

Please sign in to comment.