summaryrefslogtreecommitdiff
path: root/kernel/lib/kprintf.c
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-04-08 11:51:45 -0400
committerFreya Murphy <freya@freyacat.org>2025-04-08 11:51:45 -0400
commita16062dc7f1e7e6070f22f71ea26075c4c67652a (patch)
tree8d22ab17fd1b31448020f1a6628b5683d9aa83b4 /kernel/lib/kprintf.c
parentacpi (diff)
downloadcomus-a16062dc7f1e7e6070f22f71ea26075c4c67652a.tar.gz
comus-a16062dc7f1e7e6070f22f71ea26075c4c67652a.tar.bz2
comus-a16062dc7f1e7e6070f22f71ea26075c4c67652a.zip
fmt
Diffstat (limited to 'kernel/lib/kprintf.c')
-rw-r--r--kernel/lib/kprintf.c2
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 };