Date: Tue, 2 Feb 2016 03:08:37 +0000 (UTC) From: Allan Jude <allanjude@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r295135 - stable/10/sys/boot/ficl/i386 Message-ID: <201602020308.u1238bR5035559@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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');
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602020308.u1238bR5035559>