diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-10 23:29:33 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-10 23:29:33 -0400 |
commit | 4c1d03b082f4972c02f5794976f4651fc5f85795 (patch) | |
tree | 0301195d09650346c91bd530a2eef735f98aea86 /kernel/lib/kprintf.c | |
parent | make lib betterer (diff) | |
download | comus-4c1d03b082f4972c02f5794976f4651fc5f85795.tar.gz comus-4c1d03b082f4972c02f5794976f4651fc5f85795.tar.bz2 comus-4c1d03b082f4972c02f5794976f4651fc5f85795.zip |
fmt
Diffstat (limited to 'kernel/lib/kprintf.c')
-rw-r--r-- | kernel/lib/kprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/lib/kprintf.c b/kernel/lib/kprintf.c index aabefc4..f5021fd 100644 --- a/kernel/lib/kprintf.c +++ b/kernel/lib/kprintf.c @@ -572,7 +572,7 @@ int kvsprintf(char *restrict s, const char *format, va_list args) } int kvsnprintf(char *restrict s, size_t maxlen, const char *format, - va_list args) + va_list args) { context_t ctx = { 0 }; ctx.format = format; |