https://git.reactos.org/?p=reactos.git;a=commitdiff;h=f308c6a2bc9cc8678385a…
commit f308c6a2bc9cc8678385a55fab6956867595d71d
Author: Serge Gautherie <32623169+SergeGautherie(a)users.noreply.github.com>
AuthorDate: Mon Sep 12 21:30:28 2022 +0200
Commit: GitHub <noreply(a)github.com>
CommitDate: Mon Sep 12 22:30:28 2022 +0300
[NTFS] PrintAllVCNs(): Fix a typo in an ASSERT() (#4682)
It was introduced in 0.4.7-dev-590-g 5579428b4f1.
---
drivers/filesystems/ntfs/btree.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/filesystems/ntfs/btree.c b/drivers/filesystems/ntfs/btree.c
index ed53df2c8f0..65c41c4e4f0 100644
--- a/drivers/filesystems/ntfs/btree.c
+++ b/drivers/filesystems/ntfs/btree.c
@@ -56,7 +56,7 @@ PrintAllVCNs(PDEVICE_EXTENSION Vcb,
BytesRead = ReadAttribute(Vcb, IndexAllocationContext, 0, (PCHAR)Buffer,
BufferSize);
- ASSERT(BytesRead = BufferSize);
+ ASSERT(BytesRead == BufferSize);
CurrentNode = Buffer;