Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'applications/nfc/nfc.c')
-rwxr-xr-xapplications/nfc/nfc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/nfc/nfc.c b/applications/nfc/nfc.c
index acf4c7cf..5b3453d8 100755
--- a/applications/nfc/nfc.c
+++ b/applications/nfc/nfc.c
@@ -20,7 +20,7 @@ void nfc_tick_event_callback(void* context) {
}
Nfc* nfc_alloc() {
- Nfc* nfc = furi_alloc(sizeof(Nfc));
+ Nfc* nfc = malloc(sizeof(Nfc));
nfc->worker = nfc_worker_alloc();
nfc->view_dispatcher = view_dispatcher_alloc();