Module: wine Branch: master Commit: a388cc1ff9e7cad36b65e595a40bb0e4ce38b6ec URL: http://source.winehq.org/git/wine.git/?a=commit;h=a388cc1ff9e7cad36b65e595a4...
Author: Sebastian Lackner sebastian@fds-team.de Date: Tue Sep 13 09:02:07 2016 +0200
advapi32: Use variable of correct type to store LSTATUS result.
Signed-off-by: Sebastian Lackner sebastian@fds-team.de Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/advapi32/registry.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/advapi32/registry.c b/dlls/advapi32/registry.c index 4b3d852..11be690 100644 --- a/dlls/advapi32/registry.c +++ b/dlls/advapi32/registry.c @@ -1019,7 +1019,7 @@ LSTATUS WINAPI RegQueryMultipleValuesA( HKEY hkey, PVALENTA val_list, DWORD num_ { unsigned int i; DWORD maxBytes = *ldwTotsize; - HRESULT status; + LSTATUS status; LPSTR bufptr = lpValueBuf; *ldwTotsize = 0;
@@ -1065,7 +1065,7 @@ LSTATUS WINAPI RegQueryMultipleValuesW( HKEY hkey, PVALENTW val_list, DWORD num_ { unsigned int i; DWORD maxBytes = *ldwTotsize; - HRESULT status; + LSTATUS status; LPSTR bufptr = (LPSTR)lpValueBuf; *ldwTotsize = 0;