diff options
author | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-05-09 18:09:41 +0000 |
---|---|---|
committer | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-05-09 18:09:41 +0000 |
commit | 60ef6427852e990fecbf889cd62a6b1cf2e78517 (patch) | |
tree | 2a5a2e8cc0ce4edf1a71f00589d86db044e7a5c7 /EdkCompatibilityPkg/Compatibility | |
parent | a5a3a29c4ce4017c6871bec0f9f627ba520244fc (diff) | |
download | edk2-platforms-60ef6427852e990fecbf889cd62a6b1cf2e78517.tar.xz |
Fix ICC build break
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8280 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkCompatibilityPkg/Compatibility')
-rw-r--r-- | EdkCompatibilityPkg/Compatibility/Library/LanguageLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/EdkCompatibilityPkg/Compatibility/Library/LanguageLib.c b/EdkCompatibilityPkg/Compatibility/Library/LanguageLib.c index 9015865c2f..d8201ce542 100644 --- a/EdkCompatibilityPkg/Compatibility/Library/LanguageLib.c +++ b/EdkCompatibilityPkg/Compatibility/Library/LanguageLib.c @@ -238,7 +238,7 @@ InternalLanguageLibToLower ( )
{
for (; Length > 0; Length--, Destination++, Source++) {
- *Destination = (*Source >= 'A' && *Source <= 'Z') ? *Source + ('a' - 'A') : *Source;
+ *Destination = (*Source >= 'A' && *Source <= 'Z') ? (CHAR8)(*Source + ('a' - 'A')) : *Source;
}
}
|