From 050d79e6b02c348e4d63d6ee74f19c58716b8be8 Mon Sep 17 00:00:00 2001 From: Sani7 Date: Fri, 8 Dec 2023 18:18:43 +0100 Subject: [PATCH] llfs Lornez asked to add static to the TAG --- project/Core/Src/llfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Core/Src/llfs.c b/project/Core/Src/llfs.c index 155c9bb..4c43fe6 100644 --- a/project/Core/Src/llfs.c +++ b/project/Core/Src/llfs.c @@ -19,7 +19,7 @@ #define POSIX_MAX_FILES 10 extern struct llfs_data_file* llfs_root; -const char* TAG = "llfs"; +static const char* TAG = "llfs"; static size_t file_count = 0; // Cache for the number of files in the filesystem static FILE* file_table[POSIX_MAX_FILES];