Fix ICC 11.1 build error

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10465 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
mdkinney 2010-05-07 22:46:54 +00:00
parent 2dda77a650
commit 8f64277dee
1 changed files with 1 additions and 1 deletions

View File

@ -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