Minor coding style adjustment for DxeIpl.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5197 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qhuang8
2008-05-13 09:09:41 +00:00
parent db405d1b89
commit 708919bef7
2 changed files with 8 additions and 8 deletions

View File

@@ -55,7 +55,7 @@ PeiImageRead (
// ASSERT (ALIGN_POINTER (Source32, sizeof (UINT32)) == Source32);
Length = *ReadSize;
while (Length--) {
while (Length-- != 0) {
*(Destination32++) = *(Source32++);
}