mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-14 01:03:01 -07:00
fix wrong type in print bug
This commit is contained in:
parent
b96bcc795b
commit
8e90cd4174
1 changed files with 1 additions and 1 deletions
|
@ -855,7 +855,7 @@ int printConfiguration( t55xx_conf_block_t b){
|
|||
PrintAndLog("Bit Rate : %s", GetBitRateStr(b.bitrate) );
|
||||
PrintAndLog("Inverted : %s", (b.inverted) ? "Yes" : "No" );
|
||||
PrintAndLog("Offset : %d", b.offset);
|
||||
PrintAndLog("Seq. Term. : %d", (b.ST) ? "Yes" : "No" );
|
||||
PrintAndLog("Seq. Term. : %s", (b.ST) ? "Yes" : "No" );
|
||||
PrintAndLog("Block0 : 0x%08X", b.block0);
|
||||
PrintAndLog("");
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue