[NTOS]: Code formatting only.

svn path=/trunk/; revision=72736
This commit is contained in:
Hermès Bélusca-Maïto 2016-09-18 23:28:32 +00:00
parent 0fc28afe45
commit 4b29ab5690

View file

@ -221,7 +221,7 @@ NtSetDefaultLocale(IN BOOLEAN UserProfile,
{ {
/* Open the user's key */ /* Open the user's key */
Status = RtlOpenCurrentUser(KEY_WRITE, &UserKey); Status = RtlOpenCurrentUser(KEY_WRITE, &UserKey);
if (!NT_SUCCESS(Status)) return(Status); if (!NT_SUCCESS(Status)) return Status;
/* Initialize the registry location */ /* Initialize the registry location */
RtlInitUnicodeString(&KeyName, L"Control Panel\\International"); RtlInitUnicodeString(&KeyName, L"Control Panel\\International");
@ -239,10 +239,10 @@ NtSetDefaultLocale(IN BOOLEAN UserProfile,
/* Initialize the object attributes */ /* Initialize the object attributes */
InitializeObjectAttributes(&ObjectAttributes, InitializeObjectAttributes(&ObjectAttributes,
&KeyName, &KeyName,
OBJ_CASE_INSENSITIVE | OBJ_KERNEL_HANDLE, OBJ_CASE_INSENSITIVE | OBJ_KERNEL_HANDLE,
UserKey, UserKey,
NULL); NULL);
/* Check if we don't have a default locale yet */ /* Check if we don't have a default locale yet */
if (!DefaultLocaleId) if (!DefaultLocaleId)