diff options
author | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-01-08 11:02:54 +0000 |
---|---|---|
committer | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-01-08 11:02:54 +0000 |
commit | ff44fe7118b1987e3e682d3293a508802a6cf1f8 (patch) | |
tree | a45b0a2b4b20262c09510ff69f09e03d6833ee73 /Tools | |
parent | b7d3c63160fae758c1d0467caeecad169c733338 (diff) | |
download | edk2-platforms-ff44fe7118b1987e3e682d3293a508802a6cf1f8.tar.xz |
Make the code ICC clean.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4527 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/Conf/Migration/R8Lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/Conf/Migration/R8Lib.c b/Tools/Conf/Migration/R8Lib.c index 9ee9d72667..6ef5f9100e 100644 --- a/Tools/Conf/Migration/R8Lib.c +++ b/Tools/Conf/Migration/R8Lib.c @@ -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;
|