aboutsummaryrefslogtreecommitdiff
path: root/kernel/kstd
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/kstd')
-rw-r--r--kernel/kstd/print.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/kstd/print.cpp b/kernel/kstd/print.cpp
index 44f80a7..db03816 100644
--- a/kernel/kstd/print.cpp
+++ b/kernel/kstd/print.cpp
@@ -69,7 +69,7 @@ namespace kstd::os
{
auto writer = write_buffer{(sink == print_sink::stderr) ? kapi::cio::output_stream::stderr
: kapi::cio::output_stream::stdout};
- auto context = kstd::format_context{.writer = write_buffer::callback, .user_data = &writer};
+ auto context = kstd::format_context{.writer = write_buffer::callback, .user_data = &writer, .args = args};
auto parse_context = kstd::format_parse_context{format, args.size()};
auto it = parse_context.begin();