diff options
Diffstat (limited to 'sys/boot/ficl/amd64/sysdep.c')
-rw-r--r-- | sys/boot/ficl/amd64/sysdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/ficl/amd64/sysdep.c b/sys/boot/ficl/amd64/sysdep.c index 00b0d4a..6031094 100644 --- a/sys/boot/ficl/amd64/sysdep.c +++ b/sys/boot/ficl/amd64/sysdep.c @@ -55,7 +55,7 @@ void ficlTextOut(FICL_VM *pVM, char *msg, int fNewline) IGNORE(pVM); while(*msg != 0) - putchar(*(msg++)); + putchar((unsigned char)*(msg++)); if (fNewline) putchar('\n'); |