diff options
| author | Ha Thach <[email protected]> | 2024-02-19 16:46:32 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-02-19 16:46:32 +0700 |
| commit | fabc20b3fb77a353ed118c06cf65f9a37e482880 (patch) | |
| tree | cb245ad02f80c497da156fa557a7640d7c07726c /src | |
| parent | b60d0ff1d4f1db0e3caeb26895e73e749206023a (diff) | |
| parent | 79aecf3fb7d6a384eb745253d11a95d657469eed (diff) | |
Merge pull request #2470 from IngHK/fix_2469
fixed #2469 compiler warning tusb_fifo.c -> missing default: break;
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/tusb_fifo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/tusb_fifo.c b/src/common/tusb_fifo.c index d6c3db4ce..76696396b 100644 --- a/src/common/tusb_fifo.c +++ b/src/common/tusb_fifo.c @@ -224,6 +224,7 @@ static void _ff_push_n(tu_fifo_t* f, void const * app_buf, uint16_t n, uint16_t if (wrap_bytes > 0) _ff_push_const_addr(ff_buf, app_buf, wrap_bytes); } break; + default: break; } } |
