From 32be4e4865f7599d87171b767d709e22f1c5d615 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Sat, 4 Oct 2003 20:26:45 +0000 Subject: [PATCH] Fixed buggy DPRINT. Found by Patvor. svn path=/trunk/; revision=6235 --- reactos/ntoskrnl/ob/object.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/ntoskrnl/ob/object.c b/reactos/ntoskrnl/ob/object.c index 8e7c4302527..0f54070c38a 100644 --- a/reactos/ntoskrnl/ob/object.c +++ b/reactos/ntoskrnl/ob/object.c @@ -1,4 +1,4 @@ -/* $Id: object.c,v 1.69 2003/09/25 20:07:46 ekohl Exp $ +/* $Id: object.c,v 1.70 2003/10/04 20:26:45 ekohl Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -343,8 +343,8 @@ ObCreateObject (IN KPROCESSOR_MODE ObjectAttributesAccessMode OPTIONAL, assert_irql(APC_LEVEL); - DPRINT("ObCreateObject(Handle %x, ObjectAttributes %x, Type %x)\n", - Handle, ObjectAttributes, Type); + DPRINT("ObCreateObject(Type %p ObjectAttributes %p, Object %p)\n", + Type, ObjectAttributes, Object); if (ObjectAttributes != NULL && ObjectAttributes->ObjectName != NULL &&