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 /kernel/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 'kernel/lib')
-rw-r--r-- | kernel/lib/kprintf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/lib/kprintf.c b/kernel/lib/kprintf.c index 452e45c..3494b38 100644 --- a/kernel/lib/kprintf.c +++ b/kernel/lib/kprintf.c @@ -438,6 +438,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': |