diff --git a/client/src/cmdhfmf.c b/client/src/cmdhfmf.c index 0c989d959..be450c69c 100644 --- a/client/src/cmdhfmf.c +++ b/client/src/cmdhfmf.c @@ -4335,12 +4335,14 @@ static int CmdHF14AMfCView(const char *Cmd) { } // print - PrintAndLogEx(INFO, " blk | data | ascii"); - PrintAndLogEx(INFO, "------+--------------------------------+----------------------"); + PrintAndLogEx(NORMAL, ""); + PrintAndLogEx(INFO, "----+-------------------------------------------------+-----------------"); + PrintAndLogEx(INFO, "blk | data | ascii"); + PrintAndLogEx(INFO, "----+-------------------------------------------------+-----------------"); for (uint16_t i = 0; i < numblocks; i++){ PrintAndLogEx(INFO, "%03d | %s ", i, sprint_hex_ascii(dump + (i * 16) , 16) ); } - PrintAndLogEx(INFO, "------+--------------------------------+----------------------"); + PrintAndLogEx(INFO, "----+-------------------------------------------------+-----------------"); free(dump); return PM3_SUCCESS;