From dcfc039b70b6237f3ab4af4750b72afbf2d612d3 Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Tue, 11 Aug 2015 17:08:03 +0000 Subject: [PATCH] [NTOSKRNL] fix the order of arguments passed to DPRINT svn path=/trunk/; revision=68690 --- reactos/ntoskrnl/fsrtl/filelock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/fsrtl/filelock.c b/reactos/ntoskrnl/fsrtl/filelock.c index 943ed9f59bc..64d7f8eed99 100644 --- a/reactos/ntoskrnl/fsrtl/filelock.c +++ b/reactos/ntoskrnl/fsrtl/filelock.c @@ -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); }