summaryrefslogtreecommitdiffstats
path: root/src/console
diff options
context:
space:
mode:
Diffstat (limited to 'src/console')
-rw-r--r--src/console/vtxprintf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/console/vtxprintf.c b/src/console/vtxprintf.c
index 2a5143070dba..f8055dadccd5 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;