From ec3387373822168a8445242852f3ca89e29dc322 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sat, 14 Sep 2024 14:20:34 +0200 Subject: [PATCH] fix wrong type --- client/src/cmdhfmf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/cmdhfmf.c b/client/src/cmdhfmf.c index 5c46b4d77..30dc16756 100644 --- a/client/src/cmdhfmf.c +++ b/client/src/cmdhfmf.c @@ -7882,7 +7882,7 @@ static int parse_gtu_cfg(uint8_t *d, size_t n) { PrintAndLogEx(INFO, "%s.............. ATS ( %d bytes )", sprint_hex_inrow(&d[8], d[7]), d[7]); PrintAndLogEx(INFO, "..................%s Reserved for ATS", sprint_hex_inrow(d + 8 + d[7], 16 - d[7])); } else { - PrintAndLogEx(INFO, "%s.............. %s Reserved for ATS", sprint_hex_inrow(&d[8], 16), 16); + PrintAndLogEx(INFO, "%s.............. %u Reserved for ATS", sprint_hex_inrow(&d[8], 16), 16); } PrintAndLogEx(INFO, "");