fixed a build error with Intel IPF compiler
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2479 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -1390,7 +1390,7 @@ ProcessHelpString (
|
|||||||
*FormattedString = AllocateZeroPool (VirtualLineCount * (BlockWidth + 1) * sizeof (CHAR16) * 2);
|
*FormattedString = AllocateZeroPool (VirtualLineCount * (BlockWidth + 1) * sizeof (CHAR16) * 2);
|
||||||
|
|
||||||
for (CurrIndex = 0; CurrIndex < LineCount; CurrIndex ++) {
|
for (CurrIndex = 0; CurrIndex < LineCount; CurrIndex ++) {
|
||||||
*(*FormattedString + CurrIndex * 2 * (BlockWidth + 1)) = (IndexArray[CurrIndex*3+2] == 2) ? WIDE_CHAR : NARROW_CHAR;
|
*(*FormattedString + CurrIndex * 2 * (BlockWidth + 1)) = (CHAR16)((IndexArray[CurrIndex*3+2] == 2) ? WIDE_CHAR : NARROW_CHAR);
|
||||||
StrnCpy (
|
StrnCpy (
|
||||||
*FormattedString + CurrIndex * 2 * (BlockWidth + 1) + 1,
|
*FormattedString + CurrIndex * 2 * (BlockWidth + 1) + 1,
|
||||||
StringPtr + IndexArray[CurrIndex*3],
|
StringPtr + IndexArray[CurrIndex*3],
|
||||||
|
Reference in New Issue
Block a user