mirror of
https://github.com/reactos/reactos.git
synced 2025-07-23 10:33:48 +00:00
[LSALIB]: Fix build (and 2 dprints in the process).
svn path=/trunk/; revision=72758
This commit is contained in:
parent
1b6257ac3f
commit
640e1bacfc
1 changed files with 3 additions and 3 deletions
|
@ -278,7 +278,7 @@ LsaRegisterLogonProcess(IN PLSA_STRING LogonProcessName,
|
|||
&ObjectAttributes);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT"NtOpenEvent failed (Status 0x%08lx)\n", Status);
|
||||
DPRINT("ZwOpenEvent failed (Status 0x%08lx)\n", Status);
|
||||
|
||||
Status = ZwCreateEvent(&EventHandle,
|
||||
SYNCHRONIZE,
|
||||
|
@ -287,7 +287,7 @@ LsaRegisterLogonProcess(IN PLSA_STRING LogonProcessName,
|
|||
FALSE);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("NtCreateEvent failed (Status 0x%08lx)\n", Status);
|
||||
DPRINT1("ZwCreateEvent failed (Status 0x%08lx)\n", Status);
|
||||
return Status;
|
||||
}
|
||||
}
|
||||
|
@ -298,7 +298,7 @@ LsaRegisterLogonProcess(IN PLSA_STRING LogonProcessName,
|
|||
ZwClose(EventHandle);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("NtWaitForSingleObject failed (Status 0x%08lx)\n", Status);
|
||||
DPRINT1("ZwWaitForSingleObject failed (Status 0x%08lx)\n", Status);
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue