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/views/subghz_test_static.c')
-rw-r--r--applications/subghz/views/subghz_test_static.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/subghz/views/subghz_test_static.c b/applications/subghz/views/subghz_test_static.c
index d3485d73..35001bdc 100644
--- a/applications/subghz/views/subghz_test_static.c
+++ b/applications/subghz/views/subghz_test_static.c
@@ -161,7 +161,7 @@ void subghz_test_static_exit(void* context) {
}
SubghzTestStatic* subghz_test_static_alloc() {
- SubghzTestStatic* instance = furi_alloc(sizeof(SubghzTestStatic));
+ SubghzTestStatic* instance = malloc(sizeof(SubghzTestStatic));
// View allocation and configuration
instance->view = view_alloc();
@@ -187,4 +187,4 @@ void subghz_test_static_free(SubghzTestStatic* instance) {
View* subghz_test_static_get_view(SubghzTestStatic* instance) {
furi_assert(instance);
return instance->view;
-} \ No newline at end of file
+}