mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +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;
|
||||
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",
|
||||
Fcb->RfsdMcb->Key.k_dir_id, Fcb->RfsdMcb->Key.k_objectid,
|
||||
Length, ByteOffset.QuadPart));
|
||||
|
|
Loading…
Reference in a new issue