From 6ee145aa99a5912383c2c318152fd5c406e7d14a Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 12 Aug 2020 16:33:10 -0400 Subject: note intentional FALLTHRU --- src/stdio/__printf.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/stdio') diff --git a/src/stdio/__printf.c b/src/stdio/__printf.c index 87d9368b..af3e3e6a 100644 --- a/src/stdio/__printf.c +++ b/src/stdio/__printf.c @@ -207,6 +207,7 @@ int (__printf)(struct io_options *opt, const char * format, va_list arg) case 'x': case 'X': flags |= UNSIGNED; + /* FALLTHRU */ case 'd': /* int */ case 'i': -- cgit v1.2.1