summaryrefslogtreecommitdiff
path: root/src/class
diff options
context:
space:
mode:
authorhathach <[email protected]>2022-12-08 10:30:22 +0700
committerhathach <[email protected]>2022-12-08 10:30:22 +0700
commit19400c8556ce4bf5e40653d0c87a9f07db0870a3 (patch)
treedfff12c4c66fc9829efbd497074536be562f9681 /src/class
parent6492f4a18d55219299832f40835d204fcdccb797 (diff)
fix typo, add -Wno-error=unreachable-code for fuzz due to latest cdc changes
Diffstat (limited to 'src/class')
-rw-r--r--src/class/cdc/cdc_device.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/class/cdc/cdc_device.c b/src/class/cdc/cdc_device.c
index 77c73030a..7b1e08d5d 100644
--- a/src/class/cdc/cdc_device.c
+++ b/src/class/cdc/cdc_device.c
@@ -171,6 +171,7 @@ uint32_t tud_cdc_n_write(uint8_t itf, void const* buffer, uint32_t bufsize)
uint16_t ret = tu_fifo_write_n(&p_cdc->tx_ff, buffer, (uint16_t) bufsize);
// flush if queue more than packet size
+ // may need to suppress -Wunreachable-code since most of the time CFG_TUD_CDC_TX_BUFSIZE < BULK_PACKET_SIZE
if ( (tu_fifo_count(&p_cdc->tx_ff) >= BULK_PACKET_SIZE) || ((CFG_TUD_CDC_TX_BUFSIZE < BULK_PACKET_SIZE) && tu_fifo_full(&p_cdc->tx_ff)) )
{
tud_cdc_n_write_flush(itf);