mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[NTFS] - Decrease debug spam
svn path=/branches/GSoC_2016/NTFS/; revision=74694
This commit is contained in:
parent
037d88201d
commit
4ca9151300
2 changed files with 2 additions and 3 deletions
|
@ -32,7 +32,6 @@
|
|||
#include "ntfs.h"
|
||||
|
||||
#define NDEBUG
|
||||
#undef NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
/* FUNCTIONS ****************************************************************/
|
||||
|
|
|
@ -165,7 +165,7 @@ NtfsReadFile(PDEVICE_EXTENSION DeviceExt,
|
|||
AllocatedBuffer = TRUE;
|
||||
}
|
||||
|
||||
DPRINT1("Effective read: %lu at %lu for stream '%S'\n", RealLength, RealReadOffset, Fcb->Stream);
|
||||
DPRINT("Effective read: %lu at %lu for stream '%S'\n", RealLength, RealReadOffset, Fcb->Stream);
|
||||
RealLengthRead = ReadAttribute(DeviceExt, DataContext, RealReadOffset, (PCHAR)ReadBuffer, RealLength);
|
||||
if (RealLengthRead == 0)
|
||||
{
|
||||
|
@ -184,7 +184,7 @@ NtfsReadFile(PDEVICE_EXTENSION DeviceExt,
|
|||
|
||||
*LengthRead = ToRead;
|
||||
|
||||
DPRINT1("%lu got read\n", *LengthRead);
|
||||
DPRINT("%lu got read\n", *LengthRead);
|
||||
|
||||
if (AllocatedBuffer)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue