summaryrefslogtreecommitdiff
path: root/user/lib/printf.c
diff options
context:
space:
mode:
authorIan McFarlane <i.mcfarlane2002@gmail.com>2025-04-18 10:57:38 -0400
committerIan McFarlane <i.mcfarlane2002@gmail.com>2025-04-18 10:57:38 -0400
commit8161dc6b9c05276fa696f2a058d01e6ebb86a5e8 (patch)
tree3820adb935d61bd972adbdd33dcea0a9a879d4ec /user/lib/printf.c
parentswitch __FUNCTION__ to __func__ (diff)
parentfix compile warnings (diff)
downloadcomus-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.c1
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':