Fix ICC build failure.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11411 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
lgao4 2011-03-18 05:59:21 +00:00
parent 4a12dfd454
commit dc76cddca6
1 changed files with 1 additions and 1 deletions

View File

@ -1987,5 +1987,5 @@ HiiCompareLanguage (
// Language2[Index] is not a Null-terminator, then Language2 is longer than
// the Primary Language in Language1, and FALSE must be returned.
//
return (Language2[Index] == 0);
return (BOOLEAN) (Language2[Index] == 0);
}