diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-17 14:49:33 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-17 14:49:45 -0400 |
commit | 2f6d195ba384fd9e683ba3cb5aaf58797a85e9e3 (patch) | |
tree | 71fdba68b2fc707c46cb62fdab58eb7a44c88c4d /user/lib | |
parent | gcc14stdenv instead of clang (diff) | |
download | comus-2f6d195ba384fd9e683ba3cb5aaf58797a85e9e3.tar.gz comus-2f6d195ba384fd9e683ba3cb5aaf58797a85e9e3.tar.bz2 comus-2f6d195ba384fd9e683ba3cb5aaf58797a85e9e3.zip |
fix compile warnings
Diffstat (limited to 'user/lib')
-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': |