Skip to content

Commit c71845e

Browse files
committed
[NTOS:OB] ObpLookupEntryDirectory(): SearchShadow is a BOOLEAN
1 parent bc62c17 commit c71845e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ntoskrnl/include/internal/ob.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ ObpLookupEntryDirectory(
205205
IN POBJECT_DIRECTORY Directory,
206206
IN PUNICODE_STRING Name,
207207
IN ULONG Attributes,
208-
IN UCHAR SearchShadow,
208+
IN BOOLEAN SearchShadow,
209209
IN POBP_LOOKUP_CONTEXT Context
210210
);
211211

ntoskrnl/ob/obdir.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ NTAPI
158158
ObpLookupEntryDirectory(IN POBJECT_DIRECTORY Directory,
159159
IN PUNICODE_STRING Name,
160160
IN ULONG Attributes,
161-
IN UCHAR SearchShadow,
161+
IN BOOLEAN SearchShadow,
162162
IN POBP_LOOKUP_CONTEXT Context)
163163
{
164164
BOOLEAN CaseInsensitive = FALSE;

0 commit comments

Comments
 (0)