Module: wine Branch: master Commit: 431b4f52d6865e4621598549096ce2a0799e0305 URL: http://source.winehq.org/git/wine.git/?a=commit;h=431b4f52d6865e462159854909...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Fri Dec 21 19:18:45 2012 +0000
shlwapi: Indentation fix.
---
dlls/shlwapi/ordinal.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/shlwapi/ordinal.c b/dlls/shlwapi/ordinal.c index 19ab3d9..cc2c6a9 100644 --- a/dlls/shlwapi/ordinal.c +++ b/dlls/shlwapi/ordinal.c @@ -2657,7 +2657,7 @@ DWORD WINAPI SHGetRestriction(LPCWSTR lpSubKey, LPCWSTR lpSubName, LPCWSTR lpVal lpSubKey = strRegistryPolicyW;
retval = RegOpenKeyW(HKEY_LOCAL_MACHINE, lpSubKey, &hKey); - if (retval != ERROR_SUCCESS) + if (retval != ERROR_SUCCESS) retval = RegOpenKeyW(HKEY_CURRENT_USER, lpSubKey, &hKey); if (retval != ERROR_SUCCESS) return 0; @@ -2705,7 +2705,7 @@ DWORD WINAPI SHRestrictionLookup( /* we have a known policy */
/* check if this policy has been cached */ - if (*polArr == SHELL_NO_POLICY) + if (*polArr == SHELL_NO_POLICY) *polArr = SHGetRestriction(initial, polTable->appstr, polTable->keystr); return *polArr; }