Merge pull request #2470 from IngHK/fix_2469

fixed #2469 compiler warning tusb_fifo.c -> missing default: break;
This commit is contained in:
Ha Thach 2024-02-19 16:46:32 +07:00 committed by GitHub
commit fabc20b3fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -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;
}
}