Module: wine Branch: master Commit: 167de4270585f8110fe2c9ca789bfac7f417eb9b URL: http://source.winehq.org/git/wine.git/?a=commit;h=167de4270585f8110fe2c9ca78...
Author: Francois Gouget fgouget@free.fr Date: Sat Jan 7 14:40:10 2017 +0100
msi: Make reg_get_{multi}sz() static.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Hans Leidekker hans@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/msi/msi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/msi/msi.c b/dlls/msi/msi.c index ce29c26..1687a28 100644 --- a/dlls/msi/msi.c +++ b/dlls/msi/msi.c @@ -3350,7 +3350,7 @@ INSTALLSTATE WINAPI MsiUseFeatureA( LPCSTR szProduct, LPCSTR szFeature ) return MsiUseFeatureExA(szProduct, szFeature, 0, 0); }
-WCHAR *reg_get_multisz( HKEY hkey, const WCHAR *name ) +static WCHAR *reg_get_multisz( HKEY hkey, const WCHAR *name ) { WCHAR *ret; DWORD len, type; @@ -3359,7 +3359,7 @@ WCHAR *reg_get_multisz( HKEY hkey, const WCHAR *name ) return ret; }
-WCHAR *reg_get_sz( HKEY hkey, const WCHAR *name ) +static WCHAR *reg_get_sz( HKEY hkey, const WCHAR *name ) { WCHAR *ret; DWORD len, type;