vfs: fix a fallthrough comment to silence the warning

This commit is contained in:
Anton Maklakov
2018-09-07 16:13:26 +08:00
parent fdb369c76f
commit ccbe517702

View File

@@ -443,7 +443,9 @@ static int uart_tcsetattr(int fd, int optional_actions, const struct termios *p)
errno = EINVAL;
return -1;
}
// intentional fall-through to the next case
/* FALLTHRU */
case TCSAFLUSH:
if (uart_flush_input(fd) != ESP_OK) {
errno = EINVAL;