Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion drivers/filesystems/udfs/Include/phys_lib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -976,7 +976,7 @@ try_exit: NOTHING;
UDFPrint(("UDF: Last LBA in last session: %x\n",Vcb->LastLBA));
UDFPrint(("UDF: First writable LBA (NWA) in last session: %x\n",Vcb->NWA));
UDFPrint(("UDF: Last available LBA beyond end of last session: %x\n",Vcb->LastPossibleLBA));
UDFPrint(("UDF: blocks per frame: %x\n",1 << Vcb->WCacheBlocksPerFrameSh));
UDFPrint(("UDF: blocks per frame: %x\n", Vcb->WriteBlockSize >> Vcb->SectorShift));
UDFPrint(("UDF: Flags: %s%s\n",
Vcb->VcbState & UDF_VCB_FLAGS_RAW_DISK ? "RAW " : "",
Vcb->VcbState & VCB_STATE_VOLUME_READ_ONLY ? "R/O " : "WR "
Expand Down
2 changes: 1 addition & 1 deletion drivers/filesystems/udfs/write.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ UDFCommonWrite(

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

try_return(Status = STATUS_PENDING);
}
Expand Down