mirror of https://github.com/acidanthera/audk.git
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:
parent
b7d3c63160
commit
ff44fe7118
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue