mirror of
https://github.com/reactos/reactos.git
synced 2025-05-01 19:50:36 +00:00
[NTFS] PrintAllVCNs(): Fix a typo in an ASSERT() (#4682)
It was introduced in 0.4.7-dev-590-g 5579428b4f
.
This commit is contained in:
parent
96e3c7bcc5
commit
f308c6a2bc
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ PrintAllVCNs(PDEVICE_EXTENSION Vcb,
|
||||||
|
|
||||||
BytesRead = ReadAttribute(Vcb, IndexAllocationContext, 0, (PCHAR)Buffer, BufferSize);
|
BytesRead = ReadAttribute(Vcb, IndexAllocationContext, 0, (PCHAR)Buffer, BufferSize);
|
||||||
|
|
||||||
ASSERT(BytesRead = BufferSize);
|
ASSERT(BytesRead == BufferSize);
|
||||||
|
|
||||||
CurrentNode = Buffer;
|
CurrentNode = Buffer;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue