Make the code ICC clean.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4527 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qwang12 2008-01-08 11:02:54 +00:00
parent b7d3c63160
commit ff44fe7118
1 changed files with 1 additions and 1 deletions

View File

@ -360,7 +360,7 @@ R8_HexStringToBuf (
} else {
Byte = Buf[Idx / 2];
Byte &= 0x0F;
Byte |= Digit << 4;
Byte = (UINT8) (Byte | Digit << 4);
}
Buf[Idx / 2] = Byte;