From 73e5045bcdb3718b17c9b9b4caae2e05fe81317a Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Tue, 5 Nov 2024 22:28:00 +0100 Subject: [PATCH] fix loading nfc files --- client/src/fileutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/fileutils.c b/client/src/fileutils.c index 481c872cc..8422efd79 100644 --- a/client/src/fileutils.c +++ b/client/src/fileutils.c @@ -3085,7 +3085,7 @@ int pm3_load_dump(const char *fn, void **pdump, size_t *dumplen, size_t maxdumpl case FLIPPER: { nfc_df_e dumptype; res = detect_nfc_dump_format(fn, &dumptype, true); - if (res != SUCCESS) { + if (res != PM3_SUCCESS) { break; }