[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:
Serge Gautherie 2022-09-12 21:30:28 +02:00 committed by GitHub
parent 96e3c7bcc5
commit f308c6a2bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -56,7 +56,7 @@ PrintAllVCNs(PDEVICE_EXTENSION Vcb,
BytesRead = ReadAttribute(Vcb, IndexAllocationContext, 0, (PCHAR)Buffer, BufferSize);
ASSERT(BytesRead = BufferSize);
ASSERT(BytesRead == BufferSize);
CurrentNode = Buffer;