From: lgao4 Date: Wed, 8 Aug 2007 15:21:11 +0000 (+0000) Subject: Correct parameter UINTN to UINT32 X-Git-Tag: edk2-stable201903~22385 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=98a1fa1f349476533c626020a7196f08c1ef2dba;hp=7a31af6a12e9586fc0d6bed972c00a0aafd728d8;ds=sidebyside Correct parameter UINTN to UINT32 git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3576 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/MdePkg/Include/Library/CustomDecompressLib.h b/MdePkg/Include/Library/CustomDecompressLib.h index 36086d4f0f..36e8c027cc 100644 --- a/MdePkg/Include/Library/CustomDecompressLib.h +++ b/MdePkg/Include/Library/CustomDecompressLib.h @@ -18,7 +18,6 @@ /** Decompress GetInfo fucntion. - @param[in] DecompressGuid The guid matches this decompress method. @param[in] Source The source buffer containing the compressed data. @param[in] SourceSize The size of source buffer @@ -71,8 +70,8 @@ CustomDecompress ( RETURN_STATUS EFIAPI CustomDecompressGetAlgorithms ( - IN OUT GUID **AlgorithmGuidTable, - IN OUT UINTN *NumberOfAlgorithms + IN OUT GUID **AlgorithmGuidTable, + IN OUT UINT32 *NumberOfAlgorithms ); #endif diff --git a/MdePkg/Library/BaseCustomDecompressLibNull/BaseCustomDecompressLibNull.c b/MdePkg/Library/BaseCustomDecompressLibNull/BaseCustomDecompressLibNull.c index 4635e87e4d..2eaa4c95c1 100644 --- a/MdePkg/Library/BaseCustomDecompressLibNull/BaseCustomDecompressLibNull.c +++ b/MdePkg/Library/BaseCustomDecompressLibNull/BaseCustomDecompressLibNull.c @@ -77,8 +77,8 @@ CustomDecompress ( RETURN_STATUS EFIAPI CustomDecompressGetAlgorithms ( - IN OUT GUID **AlgorithmGuidTable, - IN OUT UINTN *NumberOfAlgorithms + IN OUT GUID **AlgorithmGuidTable, + IN OUT UINT32 *NumberOfAlgorithms ) { *NumberOfAlgorithms = 0;