Skip to content

Commit

Permalink
smcread: fix logged type in smcread -l (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
VladRassokhin authored Feb 25, 2023
1 parent 8623634 commit a72a70d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/smcread/smcread.c
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ static int smc_dump_lib_keys(const char *smcpath) {
printf(" [%c%c%c%c] type [%c%c%c%c] %02X%02X%02X%02X len [%2u] idx [%3u]: %.256s\n",
key->key[3] == '\0' ? ' ' : key->key[3], key->key[2] == '\0' ? ' ' : key->key[2],
key->key[1] == '\0' ? ' ' : key->key[1], key->key[0] == '\0' ? ' ' : key->key[0],
key->type[3], key->type[2], key->type[1], key->type[0] == '\0' ? '?' : key->type[3],
key->type[3], key->type[2], key->type[1], key->type[0] == '\0' ? '?' : key->type[0],
key->type[3], key->type[2], key->type[1], key->type[0],
key->len, key->index, key->description);
}
Expand Down

0 comments on commit a72a70d

Please sign in to comment.