[NTOSKRNL] fix the order of arguments passed to DPRINT

svn path=/trunk/; revision=68690
This commit is contained in:
Christoph von Wittich
2015-08-11 17:08:03 +00:00
parent 4887326473
commit dcfc039b70
+1 -1
View File
@@ -1010,7 +1010,7 @@ FsRtlFastUnlockSingle(IN PFILE_LOCK FileLock,
// 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);
}