mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-24 01:13:04 -05:00
sys: IRP_MJ_LOCK_CONTROL: debug log fix
This commit is contained in:
parent
7458f7da39
commit
785c4ba29d
@ -72,12 +72,12 @@ NTSTATUS FspFsvolLockControlComplete(
|
||||
FSP_ENTER_IOC(PAGED_CODE());
|
||||
|
||||
FSP_LEAVE_IOC("FileObject=%p, "
|
||||
"Key=%#lx, ByteOffset=%#lx:%#lx, Length=%ld",
|
||||
"Key=%#lx, ByteOffset=%#lx:%#lx, Length=%lld",
|
||||
IrpSp->FileObject,
|
||||
IrpSp->Parameters.LockControl.Key,
|
||||
IrpSp->Parameters.LockControl.ByteOffset.HighPart,
|
||||
IrpSp->Parameters.LockControl.ByteOffset.LowPart,
|
||||
IrpSp->Parameters.LockControl.Length);
|
||||
IrpSp->Parameters.LockControl.Length->QuadPart);
|
||||
}
|
||||
|
||||
NTSTATUS FspLockControl(
|
||||
@ -94,10 +94,10 @@ NTSTATUS FspLockControl(
|
||||
}
|
||||
|
||||
FSP_LEAVE_MJ("FileObject=%p, "
|
||||
"Key=%#lx, ByteOffset=%#lx:%#lx, Length=%ld",
|
||||
"Key=%#lx, ByteOffset=%#lx:%#lx, Length=%lld",
|
||||
IrpSp->FileObject,
|
||||
IrpSp->Parameters.LockControl.Key,
|
||||
IrpSp->Parameters.LockControl.ByteOffset.HighPart,
|
||||
IrpSp->Parameters.LockControl.ByteOffset.LowPart,
|
||||
IrpSp->Parameters.LockControl.Length);
|
||||
IrpSp->Parameters.LockControl.Length->QuadPart);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user