Skip to content

Commit

Permalink
Fixed indentation issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Norton committed Apr 2, 2024
1 parent c0284a1 commit bd33298
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/keytools/sign.c
Original file line number Diff line number Diff line change
Expand Up @@ -2084,8 +2084,8 @@ int main(int argc, char** argv)
fprintf(stderr, "Invalid custom TLV fields. \n");
exit(16);
}
tag = (uint16_t)arg2num(argv[i + 1], 2);
len = (uint16_t)strlen(argv[i + 2]);
tag = (uint16_t)arg2num(argv[i + 1], 2);
len = (uint16_t)strlen(argv[i + 2]);
if (tag < 0x0030) {
fprintf(stderr, "Invalid custom tag: %s\n", argv[i + 1]);
exit(16);
Expand Down

0 comments on commit bd33298

Please sign in to comment.