diff options
| author | Jakob Kaivo <jkk@ung.org> | 2020-08-12 16:33:10 -0400 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2020-08-12 16:33:10 -0400 |
| commit | 6ee145aa99a5912383c2c318152fd5c406e7d14a (patch) | |
| tree | fe4de933e2409d41382c05b7a1e9b8413d590156 /src/stdio | |
| parent | 5bd54dca15ac7a1d5b823d2eeb20779780424485 (diff) | |
note intentional FALLTHRU
Diffstat (limited to 'src/stdio')
| -rw-r--r-- | src/stdio/__printf.c | 1 |
1 files changed, 1 insertions, 0 deletions
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': |
