diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-08 11:51:45 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-08 11:51:45 -0400 |
commit | a16062dc7f1e7e6070f22f71ea26075c4c67652a (patch) | |
tree | 8d22ab17fd1b31448020f1a6628b5683d9aa83b4 /kernel/lib | |
parent | acpi (diff) | |
download | comus-a16062dc7f1e7e6070f22f71ea26075c4c67652a.tar.gz comus-a16062dc7f1e7e6070f22f71ea26075c4c67652a.tar.bz2 comus-a16062dc7f1e7e6070f22f71ea26075c4c67652a.zip |
fmt
Diffstat (limited to 'kernel/lib')
-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 e01b091..552b923 100644 --- a/kernel/lib/kprintf.c +++ b/kernel/lib/kprintf.c @@ -547,7 +547,7 @@ size_t kvsprintf(char *restrict s, const char *format, va_list args) } size_t kvsnprintf(char *restrict s, size_t maxlen, const char *format, - va_list args) + va_list args) { // create context context_t ctx = { 0 }; |