From c7af357dc158d9cea7ea81478e4da04e176ca4b6 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Fri, 26 Jan 2024 20:48:41 +0100 Subject: [PATCH] style --- armsrc/iso14443b.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/armsrc/iso14443b.c b/armsrc/iso14443b.c index 14a0a185c..345c61749 100644 --- a/armsrc/iso14443b.c +++ b/armsrc/iso14443b.c @@ -1991,10 +1991,10 @@ static int iso14443b_select_xrx_card(iso14b_card_select_t *card) { // apply PASSWORD command - txbuf[0] = 2; + txbuf[0] = 0x02; txbuf[1] = 0x38; // uid from previous command used - txbuf[10] = 3; + txbuf[10] = 0x03; txbuf[11] = 0x4e; txbuf[12] = 0x4b; txbuf[13] = 0x53; @@ -2018,7 +2018,7 @@ static int iso14443b_select_xrx_card(iso14b_card_select_t *card) { return PM3_ECRC; } - if (x_atqb[0] != 2 || x_atqb[1] != 0) { + if (x_atqb[0] != 0x02 || x_atqb[1] != 0x00) { return PM3_EWRONGANSWER; }