AP_HAL: fix FALLTHROUGH

This commit is contained in:
Pierre Kancir 2018-03-20 15:52:50 +01:00 committed by Randy Mackay
parent 9c23aa5ec3
commit f66c83a59e

View File

@ -111,7 +111,7 @@ void print_vprintf(AP_HAL::Print *s, const char *fmt, va_list ap)
continue;
case '+':
flags |= FL_PLUS;
/* FALLTHROUGH */
FALLTHROUGH;
case ' ':
flags |= FL_SPACE;
continue;