summaryrefslogtreecommitdiffstats
path: root/EdkCompatibilityPkg
diff options
context:
space:
mode:
authormdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524>2009-05-09 18:09:41 +0000
committermdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524>2009-05-09 18:09:41 +0000
commit60ef6427852e990fecbf889cd62a6b1cf2e78517 (patch)
tree2a5a2e8cc0ce4edf1a71f00589d86db044e7a5c7 /EdkCompatibilityPkg
parenta5a3a29c4ce4017c6871bec0f9f627ba520244fc (diff)
downloadedk2-60ef6427852e990fecbf889cd62a6b1cf2e78517.tar.gz
edk2-60ef6427852e990fecbf889cd62a6b1cf2e78517.tar.bz2
edk2-60ef6427852e990fecbf889cd62a6b1cf2e78517.zip
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')
-rw-r--r--EdkCompatibilityPkg/Compatibility/Library/LanguageLib.c2
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;
}
}