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');
 
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to