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/bt/bt_hid_app/bt_hid.c')
-rwxr-xr-xapplications/bt/bt_hid_app/bt_hid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/bt/bt_hid_app/bt_hid.c b/applications/bt/bt_hid_app/bt_hid.c
index 9d6fdae7..ab13f6f3 100755
--- a/applications/bt/bt_hid_app/bt_hid.c
+++ b/applications/bt/bt_hid_app/bt_hid.c
@@ -54,7 +54,7 @@ void bt_hid_connection_status_changed_callback(BtStatus status, void* context) {
}
BtHid* bt_hid_app_alloc() {
- BtHid* app = furi_alloc(sizeof(BtHid));
+ BtHid* app = malloc(sizeof(BtHid));
// Gui
app->gui = furi_record_open("gui");