fix warning

This commit is contained in:
Mengsk
2021-06-24 11:35:05 +02:00
parent 9d6fd78b63
commit b9e9773d04
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -248,13 +248,13 @@ static inline bool tud_cdc_write_clear(void)
}
// Get the Receive FIFO
static inline tu_fifo_t* tud_cdc_get_rx_ff (uint8_t itf)
static inline tu_fifo_t* tud_cdc_get_rx_ff (void)
{
return tud_cdc_n_get_rx_ff(0);
}
// Get the transmit FIFO
static inline tu_fifo_t* tud_cdc_get_tx_ff (uint8_t itf)
static inline tu_fifo_t* tud_cdc_get_tx_ff (void)
{
return tud_cdc_n_get_tx_ff(0);
}