Author: hbelusca
Date: Sun Sep 18 23:28:32 2016
New Revision: 72736
URL:
http://svn.reactos.org/svn/reactos?rev=72736&view=rev
Log:
[NTOS]: Code formatting only.
Modified:
trunk/reactos/ntoskrnl/ex/locale.c
Modified: trunk/reactos/ntoskrnl/ex/locale.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ex/locale.c?rev=7…
==============================================================================
--- trunk/reactos/ntoskrnl/ex/locale.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ex/locale.c [iso-8859-1] Sun Sep 18 23:28:32 2016
@@ -221,7 +221,7 @@
{
/* 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 @@
/* 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)