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/subghz/subghz_history.c')
-rw-r--r--applications/subghz/subghz_history.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/subghz/subghz_history.c b/applications/subghz/subghz_history.c
index ad6c3d4c..bb821e40 100644
--- a/applications/subghz/subghz_history.c
+++ b/applications/subghz/subghz_history.c
@@ -31,7 +31,7 @@ struct SubGhzHistory {
};
SubGhzHistory* subghz_history_alloc(void) {
- SubGhzHistory* instance = furi_alloc(sizeof(SubGhzHistory));
+ SubGhzHistory* instance = malloc(sizeof(SubGhzHistory));
return instance;
}