diff options
author | aqua <aqua@iserlohn-fortress.net> | 2022-11-03 15:56:05 +0200 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2022-11-03 15:56:05 +0200 |
commit | 956bc514ff1860ca6122000a0ffe75427e2fde39 (patch) | |
tree | 4783d1f082b3797fa795ba26d06b02295fc8a370 /lib/stdio | |
parent | fix compiler warnings (diff) | |
download | kernel-956bc514ff1860ca6122000a0ffe75427e2fde39.tar.xz |
vga: fix text mode cursor
outb parameters are (value, port) and not (port, value)
Diffstat (limited to 'lib/stdio')
-rw-r--r-- | lib/stdio/printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdio/printf.c b/lib/stdio/printf.c index 25cce40..ae4d5b1 100644 --- a/lib/stdio/printf.c +++ b/lib/stdio/printf.c @@ -65,6 +65,6 @@ printf(const char *restrict format, ...) } va_end(params); - // vga_update_cursor(); + vga_update_cursor(); return written; } |