We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1409b2 commit f3aeb43Copy full SHA for f3aeb43
src/AudioTools/CoreAudio/AudioLogger.h
@@ -18,11 +18,11 @@
18
namespace audio_tools {
19
20
#if defined(ESP32)
21
-MutexRTOS audio_logger_mutex;
+static MutexRTOS audio_logger_mutex;
22
#elif defined(RP2040)
23
-MutexRP2040 audio_logger_mutex;
+static MutexRP2040 audio_logger_mutex;
24
#else
25
-MutexBase audio_logger_mutex; // no locking
+static MutexBase audio_logger_mutex; // no locking
26
#endif
27
28
/**
0 commit comments