Commit 431b4f52 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

shlwapi: Indentation fix.

parent c78f8d74
...@@ -2657,7 +2657,7 @@ DWORD WINAPI SHGetRestriction(LPCWSTR lpSubKey, LPCWSTR lpSubName, LPCWSTR lpVal ...@@ -2657,7 +2657,7 @@ DWORD WINAPI SHGetRestriction(LPCWSTR lpSubKey, LPCWSTR lpSubName, LPCWSTR lpVal
lpSubKey = strRegistryPolicyW; lpSubKey = strRegistryPolicyW;
retval = RegOpenKeyW(HKEY_LOCAL_MACHINE, lpSubKey, &hKey); retval = RegOpenKeyW(HKEY_LOCAL_MACHINE, lpSubKey, &hKey);
if (retval != ERROR_SUCCESS) if (retval != ERROR_SUCCESS)
retval = RegOpenKeyW(HKEY_CURRENT_USER, lpSubKey, &hKey); retval = RegOpenKeyW(HKEY_CURRENT_USER, lpSubKey, &hKey);
if (retval != ERROR_SUCCESS) if (retval != ERROR_SUCCESS)
return 0; return 0;
...@@ -2705,7 +2705,7 @@ DWORD WINAPI SHRestrictionLookup( ...@@ -2705,7 +2705,7 @@ DWORD WINAPI SHRestrictionLookup(
/* we have a known policy */ /* we have a known policy */
/* check if this policy has been cached */ /* check if this policy has been cached */
if (*polArr == SHELL_NO_POLICY) if (*polArr == SHELL_NO_POLICY)
*polArr = SHGetRestriction(initial, polTable->appstr, polTable->keystr); *polArr = SHGetRestriction(initial, polTable->appstr, polTable->keystr);
return *polArr; return *polArr;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment