Fixd EDKII r2594 build broken issue - MdePkg build failed with ICC.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2595 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qouyang 2007-05-15 04:44:59 +00:00
parent efdbc5199e
commit c392941764
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ InternalIpfDelay (
IN INT64 Delay IN INT64 Delay
) )
{ {
INT64 Ticks; UINT64 Ticks;
// //
// The target timer count is calculated here // The target timer count is calculated here
@ -44,7 +44,7 @@ InternalIpfDelay (
// Delay > 2^63 could not be handled by this function // Delay > 2^63 could not be handled by this function
// Timer wrap-arounds are handled correctly by this function // Timer wrap-arounds are handled correctly by this function
// //
while (Ticks - AsmReadItc () >= 0); while (Ticks >= AsmReadItc());
} }
/** /**