svn commit: r295135 - stable/10/sys/boot/ficl/i386
Allan Jude
allanjude at FreeBSD.org
Tue Feb 2 03:08:38 UTC 2016
Author: allanjude
Date: Tue Feb 2 03:08:37 2016
New Revision: 295135
URL: https://svnweb.freebsd.org/changeset/base/295135
Log:
MFC: r294926
ficl on i386 should cast to unsigned char output to support efi i386
Submitted by: Toomas Soome <tsoome at me.com>
Approved by: re (gjb)
Modified:
stable/10/sys/boot/ficl/i386/sysdep.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/boot/ficl/i386/sysdep.c
==============================================================================
--- stable/10/sys/boot/ficl/i386/sysdep.c Tue Feb 2 00:14:51 2016 (r295134)
+++ stable/10/sys/boot/ficl/i386/sysdep.c Tue Feb 2 03:08:37 2016 (r295135)
@@ -58,7 +58,7 @@ void ficlTextOut(FICL_VM *pVM, char *ms
IGNORE(pVM);
while(*msg != 0)
- putchar(*(msg++));
+ putchar((unsigned char)*(msg++));
if (fNewline)
putchar('\n');
More information about the svn-src-all
mailing list