Author: cwittich Date: Tue Aug 11 17:08:03 2015 New Revision: 68690
URL: http://svn.reactos.org/svn/reactos?rev=68690&view=rev Log: [NTOSKRNL] fix the order of arguments passed to DPRINT
Modified: trunk/reactos/ntoskrnl/fsrtl/filelock.c
Modified: trunk/reactos/ntoskrnl/fsrtl/filelock.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/fsrtl/filelock.c?r... ============================================================================== --- trunk/reactos/ntoskrnl/fsrtl/filelock.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/fsrtl/filelock.c [iso-8859-1] Tue Aug 11 17:08:03 2015 @@ -1010,7 +1010,7 @@ // we looked, but can't guarantee that it won't just be re-queued // because somebody else snatched part of the range in a new thread. DPRINT("Locking another IRP %p for %p %wZ\n", - &FileObject->FileName, FileLock, NextMatchingLockIrp); + NextMatchingLockIrp, FileLock, &FileObject->FileName); FsRtlProcessFileLock(InternalInfo->BelongsTo, NextMatchingLockIrp, NULL); }