diff options
Diffstat (limited to 'src/console')
-rw-r--r-- | src/console/vtxprintf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/console/vtxprintf.c b/src/console/vtxprintf.c index 2a5143070d..f8055dadcc 100644 --- a/src/console/vtxprintf.c +++ b/src/console/vtxprintf.c @@ -244,7 +244,7 @@ repeat: case 'X': flags |= LARGE; - /* fall through */ + __fallthrough; case 'x': base = 16; break; @@ -252,6 +252,7 @@ repeat: case 'd': case 'i': flags |= SIGN; + __fallthrough; case 'u': break; |