From 895627d1cdd814a28646824780a8f7c5794753bd Mon Sep 17 00:00:00 2001 From: Willy-JL <49810075+Willy-JL@users.noreply.github.com> Date: Sat, 17 Feb 2024 06:32:01 +0000 Subject: [PATCH] oops --- applications/services/storage/storages/storage_int.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/services/storage/storages/storage_int.c b/applications/services/storage/storages/storage_int.c index 172d8a2a9..b46b1789a 100644 --- a/applications/services/storage/storages/storage_int.c +++ b/applications/services/storage/storages/storage_int.c @@ -664,7 +664,7 @@ static FS_Error storage_int_common_remove(void* ctx, const char* path) { return storage_int_parse_error(result); } -static FS_Error storage_int_common_rename(void* ctx, const char* old, const char* new) { // FIXME +static FS_Error storage_int_common_rename(void* ctx, const char* old, const char* new) { StorageData* storage = ctx; lfs_t* lfs = lfs_get_from_storage(storage); int result = lfs_rename(lfs, old, new);