diff options
| author | dp111 <[email protected]> | 2024-08-16 21:43:41 +0100 |
|---|---|---|
| committer | dp111 <[email protected]> | 2024-08-16 21:43:41 +0100 |
| commit | c34d5e7a71303c91fab134606841dd62ec57eef6 (patch) | |
| tree | 8810f607404e4777b2742ef5c6c8c282243af43c /src/common | |
| parent | 802713523ed97b3a5190d778d19a9814efe0cab9 (diff) | |
Put break inside #if #endif
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/tusb_fifo.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/tusb_fifo.c b/src/common/tusb_fifo.c index 8a0fd4417..5f2dcabad 100644 --- a/src/common/tusb_fifo.c +++ b/src/common/tusb_fifo.c @@ -315,9 +315,8 @@ static void _ff_pull_n(tu_fifo_t* f, void* app_buf, uint16_t n, uint16_t rd_ptr, // Read data wrapped part if (wrap_bytes > 0) _ff_pull_const_addr(app_buf, ff_buf, wrap_bytes); } -#endif break; - +#endif default: break; } } |
