mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 14:53:40 +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 */
|
/* 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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue