mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 14:10:32 +00:00
shell32/tests: Remove variable res which is not really used from init_strings.
This commit is contained in:
parent
7b252d6edb
commit
3a88623553
@ -149,7 +149,6 @@ static void init_strings(void)
|
||||
{
|
||||
HKEY key;
|
||||
DWORD size;
|
||||
LONG res;
|
||||
|
||||
/* Older Win9x and NT4 */
|
||||
|
||||
@ -162,7 +161,7 @@ static void init_strings(void)
|
||||
|
||||
RegOpenKeyA(HKEY_LOCAL_MACHINE, "Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders", &key);
|
||||
size = sizeof(commonprograms);
|
||||
res = RegQueryValueExA(key, "Common Programs", NULL, NULL, (LPBYTE)&commonprograms, &size);
|
||||
RegQueryValueExA(key, "Common Programs", NULL, NULL, (LPBYTE)&commonprograms, &size);
|
||||
RegCloseKey(key);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user