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;
|
PKEVENT Event;
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
|
|
||||||
DPRINT("NtPulseEvent(EventHandle %x UnsafePulseCount %x)\n",
|
DPRINT("NtPulseEvent(EventHandle %x PreviousState %x)\n",
|
||||||
EventHandle, UnsafePulseCount);
|
EventHandle, PreviousState);
|
||||||
|
|
||||||
Status = ObReferenceObjectByHandle(EventHandle,
|
Status = ObReferenceObjectByHandle(EventHandle,
|
||||||
EVENT_MODIFY_STATE,
|
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
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -212,11 +212,11 @@ NtCreateSymbolicLinkObject(OUT PHANDLE LinkHandle,
|
||||||
|
|
||||||
ASSERT_IRQL(PASSIVE_LEVEL);
|
ASSERT_IRQL(PASSIVE_LEVEL);
|
||||||
|
|
||||||
DPRINT("NtCreateSymbolicLinkObject(SymbolicLinkHandle %p, DesiredAccess %ul, ObjectAttributes %p, DeviceName %wZ)\n",
|
DPRINT("NtCreateSymbolicLinkObject(LinkHandle %p, DesiredAccess %ul, ObjectAttributes %p, LinkTarget %wZ)\n",
|
||||||
SymbolicLinkHandle,
|
LinkHandle,
|
||||||
DesiredAccess,
|
DesiredAccess,
|
||||||
ObjectAttributes,
|
ObjectAttributes,
|
||||||
DeviceName);
|
LinkTarget);
|
||||||
|
|
||||||
Status = ObCreateObject(ExGetPreviousMode(),
|
Status = ObCreateObject(ExGetPreviousMode(),
|
||||||
ObSymbolicLinkType,
|
ObSymbolicLinkType,
|
||||||
|
|
Loading…
Reference in a new issue