mirror of
https://github.com/reactos/reactos.git
synced 2026-06-01 00:40:26 +08:00
[NTOSKRNL/BASESRV]: Tiny formatting clean-ups made while debugging.
svn path=/trunk/; revision=59587
This commit is contained in:
@@ -3265,7 +3265,7 @@ NtDuplicateObject(IN HANDLE SourceProcessHandle,
|
||||
PreviousMode,
|
||||
(PVOID*)&SourceProcess,
|
||||
NULL);
|
||||
if (!NT_SUCCESS(Status)) return(Status);
|
||||
if (!NT_SUCCESS(Status)) return Status;
|
||||
|
||||
/* Check if got a target handle */
|
||||
if (TargetProcessHandle)
|
||||
|
||||
@@ -57,7 +57,7 @@ CSR_API(BaseSrvCreateProcess)
|
||||
DUPLICATE_SAME_ACCESS);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("Failed to duplicate process handle\n");
|
||||
DPRINT1("Failed to duplicate process handle: %lx\n", Status);
|
||||
return Status;
|
||||
}
|
||||
|
||||
@@ -71,7 +71,7 @@ CSR_API(BaseSrvCreateProcess)
|
||||
DUPLICATE_SAME_ACCESS);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("Failed to duplicate process handle\n");
|
||||
DPRINT1("Failed to duplicate thread handle: %lx\n", Status);
|
||||
NtClose(ProcessHandle);
|
||||
return Status;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user