From ff44fe7118b1987e3e682d3293a508802a6cf1f8 Mon Sep 17 00:00:00 2001 From: qwang12 Date: Tue, 8 Jan 2008 11:02:54 +0000 Subject: Make the code ICC clean. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4527 6f19259b-4bc3-4df7-8a09-765794883524 --- Tools/Conf/Migration/R8Lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Tools') 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; -- cgit v1.2.3