https://git.reactos.org/?p=reactos.git;a=commitdiff;h=c71845ee8c69fa6283c2ed427d7fd777b44fd270

commit c71845ee8c69fa6283c2ed427d7fd777b44fd270
Author:     Hermès Bélusca-Maïto <hermes.belusca-ma...@reactos.org>
AuthorDate: Tue Mar 4 21:47:42 2025 +0100
Commit:     Hermès Bélusca-Maïto <hermes.belusca-ma...@reactos.org>
CommitDate: Tue Mar 11 19:12:36 2025 +0100

    [NTOS:OB] ObpLookupEntryDirectory(): SearchShadow is a BOOLEAN
---
 ntoskrnl/include/internal/ob.h | 2 +-
 ntoskrnl/ob/obdir.c            | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ntoskrnl/include/internal/ob.h b/ntoskrnl/include/internal/ob.h
index 4aad5a5e253..9e4497bbff5 100644
--- a/ntoskrnl/include/internal/ob.h
+++ b/ntoskrnl/include/internal/ob.h
@@ -205,7 +205,7 @@ ObpLookupEntryDirectory(
     IN POBJECT_DIRECTORY Directory,
     IN PUNICODE_STRING Name,
     IN ULONG Attributes,
-    IN UCHAR SearchShadow,
+    IN BOOLEAN SearchShadow,
     IN POBP_LOOKUP_CONTEXT Context
 );
 
diff --git a/ntoskrnl/ob/obdir.c b/ntoskrnl/ob/obdir.c
index 3f3bc492c11..f566c995ee4 100644
--- a/ntoskrnl/ob/obdir.c
+++ b/ntoskrnl/ob/obdir.c
@@ -158,7 +158,7 @@ NTAPI
 ObpLookupEntryDirectory(IN POBJECT_DIRECTORY Directory,
                         IN PUNICODE_STRING Name,
                         IN ULONG Attributes,
-                        IN UCHAR SearchShadow,
+                        IN BOOLEAN SearchShadow,
                         IN POBP_LOOKUP_CONTEXT Context)
 {
     BOOLEAN CaseInsensitive = FALSE;

Reply via email to