summaryrefslogtreecommitdiffstats
path: root/lib/print.c
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2025-08-10 15:40:19 -0400
committerJon Santmyer <jon@jonsantmyer.com>2025-08-10 15:40:19 -0400
commitc4f8ef91f18d854a4ede7a94e95b2eab898d6963 (patch)
treec2772c4f380a684b6fa347f03b13f9476bf9500c /lib/print.c
parentb905869a35f062a4e5072f10bec3a2ba3db0e365 (diff)
downloadjove-kernel-c4f8ef91f18d854a4ede7a94e95b2eab898d6963.tar.gz
jove-kernel-c4f8ef91f18d854a4ede7a94e95b2eab898d6963.tar.bz2
jove-kernel-c4f8ef91f18d854a4ede7a94e95b2eab898d6963.zip
working usermode objdir iteration
Diffstat (limited to 'lib/print.c')
-rw-r--r--lib/print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/print.c b/lib/print.c
index 45c7671..a53ab4f 100644
--- a/lib/print.c
+++ b/lib/print.c
@@ -44,7 +44,7 @@ int kvprintf(const char *fmt, va_list ap)
kvsnprintf(buffer, size, fmt, ap_dup);
#ifdef ENABLE_UART
- uart_write(&_initDirectory, _initData.log_object, buffer, size - 1);
+ uart_write(&_initDirectory, &_initData.log_object, buffer, size - 1);
#endif
return size;
}