diff options
| author | HiFiPhile <[email protected]> | 2024-09-02 13:50:59 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-09-02 13:50:59 +0200 |
| commit | 4349e99fb29dbc7d019aa2fbb6344864799d8c1b (patch) | |
| tree | 99d6e08c0d44b675feda97a9a7301229e9227314 /src/common | |
| parent | ee551909b2465843cee6f2748404de6ce6aa016d (diff) | |
| parent | c34d5e7a71303c91fab134606841dd62ec57eef6 (diff) | |
Merge pull request #2786 from dp111/breakinside
Put break inside #if
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; } } |
