summaryrefslogtreecommitdiff
path: root/src/drivers/storage.cpp
diff options
context:
space:
mode:
authorRobin Howard <robin@rhoward.id.au>2023-10-28 13:25:50 +1100
committerRobin Howard <robin@rhoward.id.au>2023-10-28 13:25:50 +1100
commit18d90051c9145ead86d4da701a2bc54f45e4fb66 (patch)
tree38238375a002dbb599f614b1b9d0e73de0876a60 /src/drivers/storage.cpp
parent6ef0fa2b1b75f2afd3beaf112b6a29a989ce49d8 (diff)
downloadtangara-fw-18d90051c9145ead86d4da701a2bc54f45e4fb66.tar.gz
Annotates the kTag with maybe_unused; they're only used for logging.
Diffstat (limited to 'src/drivers/storage.cpp')
-rw-r--r--src/drivers/storage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/storage.cpp b/src/drivers/storage.cpp
index 0492b5dc..cb1407a6 100644
--- a/src/drivers/storage.cpp
+++ b/src/drivers/storage.cpp
@@ -26,7 +26,7 @@
#include "gpios.hpp"
#include "memory_resource.hpp"
-static const char* kTag = "SDSTORAGE";
+[[maybe_unused]] static const char* kTag = "SDSTORAGE";
static const uint8_t kMaxOpenFiles = 8;
namespace drivers {