[NTOSKRNL] Formatting fix only. 461/head
authorHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Sun, 1 Apr 2018 20:34:17 +0000 (22:34 +0200)
committerHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Sun, 1 Apr 2018 20:51:24 +0000 (22:51 +0200)
ntoskrnl/ex/harderr.c

index e8e233d..10b6682 100644 (file)
@@ -14,7 +14,7 @@
 
 #define TAG_ERR ' rrE'
 
-/* GLOBALS ****************************************************************/
+/* GLOBALS ******************************************************************/
 
 BOOLEAN ExReadyForErrors = FALSE;
 PVOID ExpDefaultErrorPort = NULL;
@@ -247,9 +247,12 @@ ExpRaiseHardError(IN NTSTATUS ErrorStatus,
     KeQuerySystemTime(&Message->ErrorTime);
 
     /* Copy the parameters */
-    if (Parameters) RtlMoveMemory(&Message->Parameters,
-                                  Parameters,
-                                  sizeof(ULONG_PTR) * NumberOfParameters);
+    if (Parameters)
+    {
+        RtlMoveMemory(&Message->Parameters,
+                      Parameters,
+                      sizeof(ULONG_PTR) * NumberOfParameters);
+    }
 
     /* Send the LPC Message */
     Status = LpcRequestWaitReplyPort(PortHandle,