summaryrefslogtreecommitdiff
path: root/src/class
diff options
context:
space:
mode:
authorhathach <[email protected]>2020-09-09 16:45:54 +0700
committerhathach <[email protected]>2020-09-09 16:45:54 +0700
commited6d48b81e8a5d1ed8b518921b30b87c7daecee5 (patch)
tree4a5c76ccb9445e13d749ef5ca8b323baa9b6d5c7 /src/class
parentfe1b5dfa235550cc4eb63e237da50689fe407bf4 (diff)
typo
Diffstat (limited to 'src/class')
-rw-r--r--src/class/cdc/cdc_device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/class/cdc/cdc_device.c b/src/class/cdc/cdc_device.c
index 8ea44b28d..0792e745d 100644
--- a/src/class/cdc/cdc_device.c
+++ b/src/class/cdc/cdc_device.c
@@ -165,7 +165,7 @@ uint32_t tud_cdc_n_write_flush (uint8_t itf)
uint8_t const rhport = TUD_OPT_RHPORT;
// Claim the endpoint first
- TU_VnERIFY( usbd_edpt_claim(rhport, p_cdc->ep_in), 0 );
+ TU_VERIFY( usbd_edpt_claim(rhport, p_cdc->ep_in), 0 );
// Pull data from FIFO
uint16_t const count = tu_fifo_read_n(&p_cdc->tx_ff, p_cdc->epin_buf, sizeof(p_cdc->epin_buf));