diff options
author | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-08-08 15:25:33 +0000 |
---|---|---|
committer | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-08-08 15:25:33 +0000 |
commit | f651bd33bfec74425b90b50684ea36bb79168d0a (patch) | |
tree | 4e2dcd2f9bff9b8b833ebeb4116c09a90d5110b3 /MdeModulePkg | |
parent | 9f256ee58a9d830f1ace0f03c2628c2e6bb342c3 (diff) | |
download | edk2-platforms-f651bd33bfec74425b90b50684ea36bb79168d0a.tar.xz |
Correct parameter UINTN to UINT32. Fix UINTN conver to UINT32
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3579 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg')
-rw-r--r-- | MdeModulePkg/Core/DxeIplPeim/DxeLoad.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Core/DxeIplPeim/DxeLoad.c b/MdeModulePkg/Core/DxeIplPeim/DxeLoad.c index 381d60cb2a..12dd583d38 100644 --- a/MdeModulePkg/Core/DxeIplPeim/DxeLoad.c +++ b/MdeModulePkg/Core/DxeIplPeim/DxeLoad.c @@ -728,7 +728,7 @@ Returns: SectionExtract,
(VOID *) Section,
(VOID **) &DstBuffer,
- &DstBufferSize,
+ (UINTN *) &DstBufferSize,
&AuthenticationStatus
);
|