diff options
author | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-08-08 15:23:09 +0000 |
---|---|---|
committer | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-08-08 15:23:09 +0000 |
commit | 9f256ee58a9d830f1ace0f03c2628c2e6bb342c3 (patch) | |
tree | 84f0e5f5ef448f9a7de6d5346d4fa8488070da85 /IntelFrameworkModulePkg | |
parent | 88ce0209fc1f4dd183c52095d2c186f31633bad5 (diff) | |
download | edk2-platforms-9f256ee58a9d830f1ace0f03c2628c2e6bb342c3.tar.xz |
Correct parameter UINTN to UINT32. Fix UINTN conver to UINT32
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3578 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkModulePkg')
-rw-r--r-- | IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.c b/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.c index 14a151bc78..061222dae0 100644 --- a/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.c +++ b/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.c @@ -859,8 +859,8 @@ Returns: RETURN_STATUS
EFIAPI
CustomDecompressGetAlgorithms (
- IN OUT GUID **AlgorithmGuidTable,
- IN OUT UINTN *NumberOfAlgorithms
+ IN OUT GUID **AlgorithmGuidTable,
+ IN OUT UINT32 *NumberOfAlgorithms
)
{
if (NumberOfAlgorithms == NULL) {
|