mirror of
https://github.com/reactos/reactos.git
synced 2025-07-27 20:32:18 +00:00
[REISERFS] Do not take this code path when compiling with clang. CORE-11799 (#94)
This commit is contained in:
parent
b439381523
commit
06b0cc74c5
1 changed files with 1 additions and 1 deletions
|
@ -605,7 +605,7 @@ RfsdReadFile(IN PRFSD_IRP_CONTEXT IrpContext)
|
||||||
Length = IoStackLocation->Parameters.Read.Length;
|
Length = IoStackLocation->Parameters.Read.Length;
|
||||||
ByteOffset = IoStackLocation->Parameters.Read.ByteOffset;
|
ByteOffset = IoStackLocation->Parameters.Read.ByteOffset;
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#if defined(_MSC_VER) && !defined(__clang__)
|
||||||
KdPrint(("$$$ " __FUNCTION__ " on key: %x,%xh to read %i bytes at the offset %xh in the file\n",
|
KdPrint(("$$$ " __FUNCTION__ " on key: %x,%xh to read %i bytes at the offset %xh in the file\n",
|
||||||
Fcb->RfsdMcb->Key.k_dir_id, Fcb->RfsdMcb->Key.k_objectid,
|
Fcb->RfsdMcb->Key.k_dir_id, Fcb->RfsdMcb->Key.k_objectid,
|
||||||
Length, ByteOffset.QuadPart));
|
Length, ByteOffset.QuadPart));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue