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:
authorあく <alleteam@gmail.com>2021-08-07 19:54:42 +0300
committerGitHub <noreply@github.com>2021-08-07 19:54:42 +0300
commit7907cb232bda5af7c30c79c67ab353b2cefe57c8 (patch)
tree767269615021122634a4c06d81a1e6079f3fbe5d /applications/storage
parenteb83395cc36bf3250e39f9544026b1fa76630bd1 (diff)
Applications: unified entry point naming scheme, drop dead code, cleanup. (#628)
Diffstat (limited to 'applications/storage')
-rw-r--r--applications/storage/storage-test-app.c2
-rw-r--r--applications/storage/storage.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/applications/storage/storage-test-app.c b/applications/storage/storage-test-app.c
index bfc8216f..7e3f0a58 100644
--- a/applications/storage/storage-test-app.c
+++ b/applications/storage/storage-test-app.c
@@ -315,7 +315,7 @@ static void do_test_end(Storage* api, const char* path) {
string_clear(str_path_2);
}
-int32_t storage_app_test(void* p) {
+int32_t storage_test_app(void* p) {
Storage* api = furi_record_open("storage");
do_test_start(api, "/int");
do_test_start(api, "/any");
diff --git a/applications/storage/storage.c b/applications/storage/storage.c
index 601ac441..ef229db0 100644
--- a/applications/storage/storage.c
+++ b/applications/storage/storage.c
@@ -79,7 +79,7 @@ void storage_tick(Storage* app) {
}
}
-int32_t storage_app(void* p) {
+int32_t storage_srv(void* p) {
Storage* app = storage_app_alloc();
furi_record_create("storage", app);