From: Alex Ionescu Date: Tue, 8 Nov 2005 20:50:04 +0000 (+0000) Subject: - Remove silly debug print X-Git-Tag: backups/ros-branch-0_2_9@19949~835 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=7f3dd627ae78f7b451dc94d285475f2d684107f7 - Remove silly debug print svn path=/trunk/; revision=19064 --- diff --git a/reactos/ntoskrnl/ob/security.c b/reactos/ntoskrnl/ob/security.c index 8ed7e882a5b..580ff6aa333 100644 --- a/reactos/ntoskrnl/ob/security.c +++ b/reactos/ntoskrnl/ob/security.c @@ -264,7 +264,7 @@ ObLogSecurityDescriptor(IN PSECURITY_DESCRIPTOR InputSecurityDescriptor, { /* HACK: Return the same descriptor back */ PSECURITY_DESCRIPTOR SdCopy; - DPRINT1("ObLogSecurityDescriptor is not implemented! %lx\n", InputSecurityDescriptor->Revision); + DPRINT1("ObLogSecurityDescriptor is not implemented!\n", InputSecurityDescriptor); SdCopy = ExAllocatePool(PagedPool, sizeof(*SdCopy)); RtlMoveMemory(SdCopy, InputSecurityDescriptor, sizeof(*SdCopy));