From e0b1b5b4f8aedfc8fe9c9b9cd76e2e364cf9345a Mon Sep 17 00:00:00 2001 From: Antiklesys Date: Fri, 20 Jun 2025 12:02:25 +0800 Subject: [PATCH] Update cmdhficlass.c Fixed indent Signed-off-by: Antiklesys --- client/src/cmdhficlass.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/client/src/cmdhficlass.c b/client/src/cmdhficlass.c index df13c5cea..dcdc4b805 100644 --- a/client/src/cmdhficlass.c +++ b/client/src/cmdhficlass.c @@ -6035,9 +6035,8 @@ static int CmdHFiClassSAM(const char *Cmd) { } else { //if it is an error decode it if (memcmp(d, "\xBE\x07\x80\x01", 4) == 0) { //if it the string is 0xbe 0x07 0x80 0x01 the next byte will indicate the error code - PrintAndLogEx(ERR,_RED_("Sam Error Code: %02x"), d[4]); - print_hex(d, resp.length); - + PrintAndLogEx(ERR,_RED_("Sam Error Code: %02x"), d[4]); + print_hex(d, resp.length); }else{ uint8_t pattern[] = {0xBD, 0x81, 0xFF, 0x8A, 0x81, 0xFF}; // 0xFF is a placeholder for the length message bool mask[] = {true, true, false, true, true, false}; // false means wildcard