You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ma...@apache.org on 2019/09/30 10:19:27 UTC

[commons-daemon] 06/08: Remove unused parameters

This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-daemon.git

commit bc87cdc09e36a72df103e40b044f39d9eee9ac16
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Mon Sep 30 11:04:21 2019 +0100

    Remove unused parameters
---
 src/native/windows/src/registry.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/native/windows/src/registry.c b/src/native/windows/src/registry.c
index 3a3e5f7..02a2cd2 100644
--- a/src/native/windows/src/registry.c
+++ b/src/native/windows/src/registry.c
@@ -159,7 +159,7 @@ LPWSTR __apxGetRegistrySzW(APXHANDLE hPool, HKEY hKey, LPCWSTR wsValueName)
     return wsRet;
 }
 
-BOOL __apxGetRegistryStrW(APXHANDLE hPool, HKEY hKey, LPCWSTR wsValueName,
+BOOL __apxGetRegistryStrW(HKEY hKey, LPCWSTR wsValueName,
                           LPWSTR lpRetval, DWORD dwMaxLen)
 {
     DWORD  rc;
@@ -216,7 +216,7 @@ LPBYTE __apxGetRegistryBinaryW(APXHANDLE hPool, HKEY hKey, LPCWSTR wsValueName,
     return lpRet;
 }
 
-DWORD __apxGetRegistryDwordW(APXHANDLE hPool, HKEY hKey, LPCWSTR wsValueName)
+DWORD __apxGetRegistryDwordW(HKEY hKey, LPCWSTR wsValueName)
 {
     DWORD  dwRet;
     DWORD  rc;