winecfg: Fix signedness of variable in enumerate_valuesW().
This commit is contained in:
parent
c6db778f4c
commit
7da2a20a19
|
@ -481,9 +481,8 @@ void set_reg_key_dwordW(HKEY root, const WCHAR *path, const WCHAR *name, DWORD v
|
|||
WCHAR **enumerate_valuesW(HKEY root, WCHAR *path)
|
||||
{
|
||||
HKEY key;
|
||||
DWORD res, i = 0;
|
||||
DWORD res, i = 0, valueslen = 0;
|
||||
WCHAR **values = NULL;
|
||||
int valueslen = 0;
|
||||
struct list *cursor;
|
||||
|
||||
res = RegOpenKeyW(root, path, &key);
|
||||
|
|
Loading…
Reference in New Issue