mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +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"
|
#include "ntfs.h"
|
||||||
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#undef NDEBUG
|
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
|
|
||||||
/* FUNCTIONS ****************************************************************/
|
/* FUNCTIONS ****************************************************************/
|
||||||
|
|
|
@ -165,7 +165,7 @@ NtfsReadFile(PDEVICE_EXTENSION DeviceExt,
|
||||||
AllocatedBuffer = TRUE;
|
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);
|
RealLengthRead = ReadAttribute(DeviceExt, DataContext, RealReadOffset, (PCHAR)ReadBuffer, RealLength);
|
||||||
if (RealLengthRead == 0)
|
if (RealLengthRead == 0)
|
||||||
{
|
{
|
||||||
|
@ -184,7 +184,7 @@ NtfsReadFile(PDEVICE_EXTENSION DeviceExt,
|
||||||
|
|
||||||
*LengthRead = ToRead;
|
*LengthRead = ToRead;
|
||||||
|
|
||||||
DPRINT1("%lu got read\n", *LengthRead);
|
DPRINT("%lu got read\n", *LengthRead);
|
||||||
|
|
||||||
if (AllocatedBuffer)
|
if (AllocatedBuffer)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue