diff options
author | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-05-07 22:46:54 +0000 |
---|---|---|
committer | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-05-07 22:46:54 +0000 |
commit | 8f64277dee379413753517fe0d72f0761e144802 (patch) | |
tree | bf99c2cda1649a0f467bcd7bb9249d4cec3631b4 /IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib | |
parent | 2dda77a650cf350751b5536a48d586a3ae02d515 (diff) | |
download | edk2-platforms-8f64277dee379413753517fe0d72f0761e144802.tar.xz |
Fix ICC 11.1 build error
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10465 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib')
-rw-r--r-- | IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/LzmaDec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/LzmaDec.c b/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/LzmaDec.c index f74f505aa1..e3db4edbb4 100644 --- a/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/LzmaDec.c +++ b/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/LzmaDec.c @@ -419,7 +419,7 @@ static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte const Byte *lim = dest + curLen;
dicPos += curLen;
do
- *(dest) = (Byte)*(dest + src);
+ *((volatile Byte *)dest) = (Byte)*(dest + src);
while (++dest != lim);
}
else
|