Skip to content

Commit e5dbb2b

Browse files
CopilotZero3K20
andcommitted
[UDFS] Fix .LowPart access on LONGLONG in write.cpp debug print
Agent-Logs-Url: https://github.com/Zero3K20/reactos/sessions/24682548-17c3-4e3c-9ca3-9caab028ab87 Co-authored-by: Zero3K20 <258969903+Zero3K20@users.noreply.github.com>
1 parent 0449e2b commit e5dbb2b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/filesystems/udfs/write.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ UDFCommonWrite(
560560

561561
// Send the request to lower level drivers
562562
if (!Wait) {
563-
UDFPrint(("UDFCommonWrite: Post physical write %x bytes at %x\n", TruncatedLength, StartingOffset.LowPart));
563+
UDFPrint(("UDFCommonWrite: Post physical write %x bytes at %x\n", TruncatedLength, (ULONG)StartingOffset));
564564

565565
try_return(Status = STATUS_PENDING);
566566
}

0 commit comments

Comments
 (0)