From 98de0f434b5636cfd938c00e2248f8c13c4f9df0 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 20 Oct 2022 17:30:03 +0200 Subject: [PATCH] style --- client/src/nfc/ndef.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/nfc/ndef.c b/client/src/nfc/ndef.c index 1d4a6231f..ff2584d50 100644 --- a/client/src/nfc/ndef.c +++ b/client/src/nfc/ndef.c @@ -1094,7 +1094,7 @@ int NDEFDecodeAndPrint(uint8_t *ndef, size_t ndefLen, bool verbose) { indx += len; break; } - case 0xfd: { + case 0xFD: { indx++; uint16_t len = ndefTLVGetLength(&ndef[indx], &indx); PrintAndLogEx(NORMAL, ""); @@ -1103,7 +1103,7 @@ int NDEFDecodeAndPrint(uint8_t *ndef, size_t ndefLen, bool verbose) { indx += len; break; } - case 0xfe: { + case 0xFE: { PrintAndLogEx(SUCCESS, "NDEF Terminator detected"); return PM3_SUCCESS; }