From 17adae481cf8706509f2be7d7ee088ef5fbfe738 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Thu, 18 Apr 2019 23:47:27 -0700 Subject: [PATCH] sys: FspFileNodeOplockCheckAsyncEx: fix stupid mistake in DEBUGTEST code --- src/sys/driver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sys/driver.h b/src/sys/driver.h index 752029dd..871c244c 100644 --- a/src/sys/driver.h +++ b/src/sys/driver.h @@ -1578,7 +1578,7 @@ NTSTATUS FspFileNodeOplockCheckAsyncEx( CompletionRoutine, PostIrpRoutine); #if DBG - if (STATUS_SUCCESS == Result && DEBUGTEST(10)) + if (DEBUGTEST_EX(STATUS_SUCCESS == Result, 10, FALSE)) { Irp->IoStatus.Status = STATUS_SUCCESS; Irp->IoStatus.Information = 0;