From 967018c3ac1f2cd71c45a7a8afa48f7e434757bb Mon Sep 17 00:00:00 2001 From: "Justin C. Miller" Date: Sun, 1 Apr 2018 15:37:26 -0700 Subject: [PATCH] Fix con_printf not returing anything. --- src/boot/console.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/boot/console.c b/src/boot/console.c index 72bdae5..f763998 100644 --- a/src/boot/console.c +++ b/src/boot/console.c @@ -217,6 +217,7 @@ con_printf(const CHAR16 *fmt, ...) con_out->OutputString(con_out, buffer); va_end(args); + return count; } void