mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[NTOSKRNL] Formatting fix only.
This commit is contained in:
parent
6cefd1242d
commit
c54aaacc8e
1 changed files with 7 additions and 4 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue