diff options
| author | Ha Thach <[email protected]> | 2023-02-22 17:35:07 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-02-22 17:35:07 +0700 |
| commit | 8fadaf01d3cb8d833ff427a7bd3c369a6d0937fc (patch) | |
| tree | 192d7e73278bef02ae7d576e8ba52fff4cdd1069 /test/fuzz/dcd_fuzz.cc | |
| parent | 557bf82336311611ba3b06e57f48d03362f3d2c3 (diff) | |
| parent | 498989ee009c388a770e7a312ae04d0a51ba745a (diff) | |
Merge pull request #1919 from hathach/use-tu-static-for-fuzz
use tu_static instead of static _fuzz_thread
Diffstat (limited to 'test/fuzz/dcd_fuzz.cc')
| -rw-r--r-- | test/fuzz/dcd_fuzz.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fuzz/dcd_fuzz.cc b/test/fuzz/dcd_fuzz.cc index 294977269..6403015dd 100644 --- a/test/fuzz/dcd_fuzz.cc +++ b/test/fuzz/dcd_fuzz.cc @@ -39,7 +39,7 @@ struct State { uint8_t address; }; -static _fuzz_thread State state = {false, 0, 0}; +tu_static State state = {false, 0, 0}; //--------------------------------------------------------------------+ // Controller API |
