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/desktop/animations/views/one_shot_animation_view.c')
-rw-r--r--applications/desktop/animations/views/one_shot_animation_view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/desktop/animations/views/one_shot_animation_view.c b/applications/desktop/animations/views/one_shot_animation_view.c
index d7e9915a..9a4dff06 100644
--- a/applications/desktop/animations/views/one_shot_animation_view.c
+++ b/applications/desktop/animations/views/one_shot_animation_view.c
@@ -78,7 +78,7 @@ static bool one_shot_view_input(InputEvent* event, void* context) {
}
OneShotView* one_shot_view_alloc(void) {
- OneShotView* view = furi_alloc(sizeof(OneShotView));
+ OneShotView* view = malloc(sizeof(OneShotView));
view->view = view_alloc();
view->update_timer =
xTimerCreate(NULL, 1000, pdTRUE, view, one_shot_view_update_timer_callback);