[REISERFS] Do not take this code path when compiling with clang. CORE-11799 (#94)

This commit is contained in:
Amine Khaldi 2017-11-19 15:24:49 +01:00
parent b439381523
commit 06b0cc74c5

View file

@ -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));