diff options
| author | Ian McFarlane <i.mcfarlane2002@gmail.com> | 2025-04-18 10:57:38 -0400 |
|---|---|---|
| committer | Ian McFarlane <i.mcfarlane2002@gmail.com> | 2025-04-18 10:57:38 -0400 |
| commit | 8161dc6b9c05276fa696f2a058d01e6ebb86a5e8 (patch) | |
| tree | 3820adb935d61bd972adbdd33dcea0a9a879d4ec /user/lib/printf.c | |
| parent | switch __FUNCTION__ to __func__ (diff) | |
| parent | fix compile warnings (diff) | |
| download | comus-8161dc6b9c05276fa696f2a058d01e6ebb86a5e8.tar.gz comus-8161dc6b9c05276fa696f2a058d01e6ebb86a5e8.tar.bz2 comus-8161dc6b9c05276fa696f2a058d01e6ebb86a5e8.zip | |
Merge branch 'main' into ata
Diffstat (limited to 'user/lib/printf.c')
| -rw-r--r-- | user/lib/printf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/user/lib/printf.c b/user/lib/printf.c index 4d20263..65d7f0f 100644 --- a/user/lib/printf.c +++ b/user/lib/printf.c @@ -444,6 +444,7 @@ static void do_printf(context_t *ctx, va_list args) opts.radix = 16; opts.hash = true; opts.zero = true; + /* fallthrough */ case 'd': case 'i': case 'u': |