From d715871df8054b62c94ef3a43f02989a7713fe09 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sat, 14 Sep 2024 21:07:15 +0200 Subject: [PATCH] ....fix type --- client/src/cmdhfmf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/cmdhfmf.c b/client/src/cmdhfmf.c index cf162b19a..29a9d5f3b 100644 --- a/client/src/cmdhfmf.c +++ b/client/src/cmdhfmf.c @@ -7867,11 +7867,11 @@ static int parse_gtu_cfg(uint8_t *d, size_t n) { uint8_t atslen = d[7]; if (atslen == 0) { - PrintAndLogEx(INFO, ".............. ATS length %u bytes ( %s )", _YELLOW_("zero"), atslen); + PrintAndLogEx(INFO, ".............. ATS length %u bytes ( %s )", atslen, _YELLOW_("zero")); } else if (atslen <= 16) { - PrintAndLogEx(INFO, ".............. ATS length %u bytes ( %s )", _GREEN_("ok"), atslen); + PrintAndLogEx(INFO, ".............. ATS length %u bytes ( %s )", atslen, _GREEN_("ok")); } else { - PrintAndLogEx(INFO, ".............. ATS length %u bytes ( %s )", _RED_("fail"), atslen); + PrintAndLogEx(INFO, ".............. ATS length %u bytes ( %s )", atslen, _RED_("fail")); atslen = 0; }