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); }