From 98a1fa1f349476533c626020a7196f08c1ef2dba Mon Sep 17 00:00:00 2001 From: lgao4 Date: Wed, 8 Aug 2007 15:21:11 +0000 Subject: [PATCH 1/1] Correct parameter UINTN to UINT32 git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3576 6f19259b-4bc3-4df7-8a09-765794883524 --- MdePkg/Include/Library/CustomDecompressLib.h | 5 ++--- .../BaseCustomDecompressLibNull.c | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) 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; -- 2.39.2