From e98675f8e599fdc4c80cb9b7444529cf326c9c1e Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Mon, 4 Jul 2022 10:20:01 +0200 Subject: [PATCH] fix faulty enum --- client/src/cmdhf14b.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/cmdhf14b.c b/client/src/cmdhf14b.c index 575bf21e5..2e63de332 100644 --- a/client/src/cmdhf14b.c +++ b/client/src/cmdhf14b.c @@ -440,7 +440,7 @@ static bool get_14b_UID(uint8_t *d, iso14b_type_t *found_type) { if (resp.oldarg[0] == 0) { memcpy(d, resp.data.asBytes, sizeof(iso14b_card_select_t)); - *found_type = ISO14B_SELECT_SR; + *found_type = ISO14B_SR; return true; } }