summaryrefslogtreecommitdiff
path: root/src/common/tusb_debug.h
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2023-02-22 17:35:07 +0700
committerGitHub <[email protected]>2023-02-22 17:35:07 +0700
commit8fadaf01d3cb8d833ff427a7bd3c369a6d0937fc (patch)
tree192d7e73278bef02ae7d576e8ba52fff4cdd1069 /src/common/tusb_debug.h
parent557bf82336311611ba3b06e57f48d03362f3d2c3 (diff)
parent498989ee009c388a770e7a312ae04d0a51ba745a (diff)
Merge pull request #1919 from hathach/use-tu-static-for-fuzz
use tu_static instead of static _fuzz_thread
Diffstat (limited to 'src/common/tusb_debug.h')
-rw-r--r--src/common/tusb_debug.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/tusb_debug.h b/src/common/tusb_debug.h
index e5f718f79..82f682043 100644
--- a/src/common/tusb_debug.h
+++ b/src/common/tusb_debug.h
@@ -114,7 +114,7 @@ typedef struct
static inline const char* tu_lookup_find(tu_lookup_table_t const* p_table, uint32_t key)
{
- static _fuzz_thread char not_found[11];
+ tu_static char not_found[11];
for(uint16_t i=0; i<p_table->count; i++)
{