Remove use of UINT8_MAX. Use BIT8-1 instead.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6897 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
mdkinney 2008-12-07 22:42:39 +00:00
parent e1cdd2eba5
commit 1579391172
1 changed files with 1 additions and 1 deletions

View File

@ -532,7 +532,7 @@ Decode (
// //
// Process a Pointer // Process a Pointer
// //
CharC = (UINT16) (CharC - (UINT8_MAX + 1 - THRESHOLD)); CharC = (UINT16) (CharC - (BIT8 - THRESHOLD));
BytesRemain = CharC; BytesRemain = CharC;