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/archive/archive.c')
-rw-r--r--applications/archive/archive.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/archive/archive.c b/applications/archive/archive.c
index 99b9bb02..bbe532c8 100644
--- a/applications/archive/archive.c
+++ b/applications/archive/archive.c
@@ -16,7 +16,7 @@ bool archive_back_event_callback(void* context) {
ArchiveApp* archive_alloc() {
ArchiveApp* archive = malloc(sizeof(ArchiveApp));
- archive->gui = furi_record_open("gui");
+ archive->gui = furi_record_open(RECORD_GUI);
archive->text_input = text_input_alloc();
string_init(archive->fav_move_str);
@@ -62,7 +62,7 @@ void archive_free(ArchiveApp* archive) {
text_input_free(archive->text_input);
- furi_record_close("gui");
+ furi_record_close(RECORD_GUI);
archive->gui = NULL;
free(archive);