Skip to content

Commit 2f86d48

Browse files
committed
Update src/hide.cpp
1 parent 4f9aded commit 2f86d48

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/hide.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ const _FLT_CONTEXT_REGISTRATION ContextRegistration[] = {
3838
};
3939

4040
const _FLT_OPERATION_REGISTRATION OperationRegistration[] = {
41-
42-
{ IRP_MJ_CREATE, 0, PreOp, 0 },
41+
42+
{ IRP_MJ_CREATE, 0, PreOp, 0 },
4343
{ IRP_MJ_WRITE, 0, PreOp, 0 },
4444
{ IRP_MJ_READ, 0, PreOp, 0 },
4545
{ IRP_MJ_OPERATION_END }
@@ -62,13 +62,13 @@ extern "C" NTSTATUS NTAPI DriverEntry
6262
(__in PDRIVER_OBJECT pDriverObject,
6363
__in PUNICODE_STRING pRegistryPath) {
6464

65-
DbgPrint("DriverEntry\n");
65+
DbgPrint("DriverEntry\n");
6666

6767
NTSTATUS ntstatus = FltRegisterFilter(pDriverObject,
6868
&FilterRegistration, &s.filter);
6969

70-
ntstatus = FltStartFiltering(s.filter);
71-
return ntstatus; }
70+
ntstatus = FltStartFiltering(s.filter);
71+
return ntstatus; }
7272

7373
extern "C" VOID NTAPI FilterUnload
7474
(__in PDRIVER_OBJECT pDriverObject) {

0 commit comments

Comments
 (0)