summaryrefslogtreecommitdiff
path: root/src/tinyprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tinyprintf.c')
-rw-r--r--src/tinyprintf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tinyprintf.c b/src/tinyprintf.c
index bb22700..0f9ec4e 100644
--- a/src/tinyprintf.c
+++ b/src/tinyprintf.c
@@ -380,7 +380,9 @@ void tfp_format(void *putp, putcf putf, const char *fmt, va_list va)
lng = 2;
# endif
#endif
+ __attribute__((fallthrough));
case 'x':
+ __attribute__((fallthrough));
case 'X':
p.base = 16;
p.uc = (ch == 'X')?1:0;