correct last commit. fix build break for some compilers.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11502 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jcarsey 2011-04-04 16:11:07 +00:00
parent 8a0b550b40
commit 4aa4377fda
1 changed files with 3 additions and 3 deletions

View File

@ -35,10 +35,10 @@ ShellCommandRunEfiCompress (
SHELL_FILE_HANDLE InShellFileHandle;
SHELL_FILE_HANDLE OutShellFileHandle;
UINT64 OutSize;
UINT64 OutSize2;
UINTN OutSize2;
VOID *OutBuffer;
UINT64 InSize;
UINT64 InSize2;
UINTN InSize2;
VOID *InBuffer;
CHAR16 *InFileName;
CONST CHAR16 *OutFileName;
@ -113,8 +113,8 @@ ShellCommandRunEfiCompress (
ASSERT_EFI_ERROR(Status);
InBuffer = AllocateZeroPool((UINTN)InSize);
ASSERT(InBuffer != NULL);
InSize2 = (UINTN)InSize;
Status = gEfiShellProtocol->ReadFile(InShellFileHandle, &InSize2, InBuffer);
InSize = InSize2;
ASSERT_EFI_ERROR(Status);
Status = Compress(InBuffer, InSize, OutBuffer, &OutSize);
if (Status == EFI_BUFFER_TOO_SMALL) {