mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 07:02:56 +00:00
[NTOS]: Code formatting only.
svn path=/trunk/; revision=72736
This commit is contained in:
parent
0fc28afe45
commit
4b29ab5690
1 changed files with 5 additions and 5 deletions
|
@ -221,7 +221,7 @@ NtSetDefaultLocale(IN BOOLEAN UserProfile,
|
|||
{
|
||||
/* Open the user's key */
|
||||
Status = RtlOpenCurrentUser(KEY_WRITE, &UserKey);
|
||||
if (!NT_SUCCESS(Status)) return(Status);
|
||||
if (!NT_SUCCESS(Status)) return Status;
|
||||
|
||||
/* Initialize the registry location */
|
||||
RtlInitUnicodeString(&KeyName, L"Control Panel\\International");
|
||||
|
@ -239,10 +239,10 @@ NtSetDefaultLocale(IN BOOLEAN UserProfile,
|
|||
|
||||
/* Initialize the object attributes */
|
||||
InitializeObjectAttributes(&ObjectAttributes,
|
||||
&KeyName,
|
||||
OBJ_CASE_INSENSITIVE | OBJ_KERNEL_HANDLE,
|
||||
UserKey,
|
||||
NULL);
|
||||
&KeyName,
|
||||
OBJ_CASE_INSENSITIVE | OBJ_KERNEL_HANDLE,
|
||||
UserKey,
|
||||
NULL);
|
||||
|
||||
/* Check if we don't have a default locale yet */
|
||||
if (!DefaultLocaleId)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue