From 6c6a597465c7052cd4ecbdeab577bdce3855439d Mon Sep 17 00:00:00 2001 From: hathach Date: Wed, 11 Sep 2019 10:47:07 +0700 Subject: [PATCH] fix #132 --- src/class/cdc/cdc_device.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/class/cdc/cdc_device.h b/src/class/cdc/cdc_device.h index 82932ef7d..b8b3c864d 100644 --- a/src/class/cdc/cdc_device.h +++ b/src/class/cdc/cdc_device.h @@ -135,7 +135,7 @@ static inline uint8_t tud_cdc_get_line_state (void) static inline void tud_cdc_get_line_coding (cdc_line_coding_t* coding) { - return tud_cdc_n_get_line_coding(0, coding); + tud_cdc_n_get_line_coding(0, coding); } static inline void tud_cdc_set_wanted_char (char wanted)