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 'lib/irda/worker/irda_worker.c')
-rw-r--r--lib/irda/worker/irda_worker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/irda/worker/irda_worker.c b/lib/irda/worker/irda_worker.c
index 0f9d3660..18de4f15 100644
--- a/lib/irda/worker/irda_worker.c
+++ b/lib/irda/worker/irda_worker.c
@@ -218,7 +218,7 @@ void irda_worker_rx_set_received_signal_callback(
}
IrdaWorker* irda_worker_alloc() {
- IrdaWorker* instance = furi_alloc(sizeof(IrdaWorker));
+ IrdaWorker* instance = malloc(sizeof(IrdaWorker));
instance->thread = furi_thread_alloc();
furi_thread_set_name(instance->thread, "IrdaWorker");