]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
fix wrong type in print bug
authormarshmellow42 <marshmellowrf@gmail.com>
Fri, 19 Feb 2016 20:11:44 +0000 (15:11 -0500)
committermarshmellow42 <marshmellowrf@gmail.com>
Fri, 19 Feb 2016 20:11:44 +0000 (15:11 -0500)
client/cmdlft55xx.c

index b8e39c3011bcd98b200a8d24f190c29ff5489e67..7e0b697a5c0a98935e809746dd4c378cceafa0ed 100644 (file)
@@ -855,7 +855,7 @@ int printConfiguration( t55xx_conf_block_t b){
        PrintAndLog("Bit Rate   : %s", GetBitRateStr(b.bitrate) );\r
        PrintAndLog("Inverted   : %s", (b.inverted) ? "Yes" : "No" );\r
        PrintAndLog("Offset     : %d", b.offset);\r
-       PrintAndLog("Seq. Term. : %d", (b.ST) ? "Yes" : "No" );\r
+       PrintAndLog("Seq. Term. : %s", (b.ST) ? "Yes" : "No" );\r
        PrintAndLog("Block0     : 0x%08X", b.block0);\r
        PrintAndLog("");\r
        return 0;\r
Impressum, Datenschutz