mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Fixed debug build
svn path=/trunk/; revision=11457
This commit is contained in:
parent
0402fbbd25
commit
d85e7ec614
2 changed files with 6 additions and 6 deletions
|
@ -220,8 +220,8 @@ NtPulseEvent(IN HANDLE EventHandle,
|
|||
PKEVENT Event;
|
||||
NTSTATUS Status;
|
||||
|
||||
DPRINT("NtPulseEvent(EventHandle %x UnsafePulseCount %x)\n",
|
||||
EventHandle, UnsafePulseCount);
|
||||
DPRINT("NtPulseEvent(EventHandle %x PreviousState %x)\n",
|
||||
EventHandle, PreviousState);
|
||||
|
||||
Status = ObReferenceObjectByHandle(EventHandle,
|
||||
EVENT_MODIFY_STATE,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: symlink.c,v 1.11 2004/10/24 20:37:26 weiden Exp $
|
||||
/* $Id: symlink.c,v 1.12 2004/10/25 14:22:21 blight Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -212,11 +212,11 @@ NtCreateSymbolicLinkObject(OUT PHANDLE LinkHandle,
|
|||
|
||||
ASSERT_IRQL(PASSIVE_LEVEL);
|
||||
|
||||
DPRINT("NtCreateSymbolicLinkObject(SymbolicLinkHandle %p, DesiredAccess %ul, ObjectAttributes %p, DeviceName %wZ)\n",
|
||||
SymbolicLinkHandle,
|
||||
DPRINT("NtCreateSymbolicLinkObject(LinkHandle %p, DesiredAccess %ul, ObjectAttributes %p, LinkTarget %wZ)\n",
|
||||
LinkHandle,
|
||||
DesiredAccess,
|
||||
ObjectAttributes,
|
||||
DeviceName);
|
||||
LinkTarget);
|
||||
|
||||
Status = ObCreateObject(ExGetPreviousMode(),
|
||||
ObSymbolicLinkType,
|
||||
|
|
Loading…
Reference in a new issue