diff options
Diffstat (limited to 'src/sysenter')
-rw-r--r-- | src/sysenter/main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/sysenter/main.c b/src/sysenter/main.c index 9f75eec..c2ad1cb 100644 --- a/src/sysenter/main.c +++ b/src/sysenter/main.c @@ -90,8 +90,9 @@ static void on_driver_unload(DRIVER_OBJECT *driver_object) KeWaitForSingleObject(&timer, Executive, KernelMode, FALSE, NULL); } -NTSTATUS DriverEntry(DRIVER_OBJECT *driver_object, - UNICODE_STRING *registry_path) +NTSTATUS DriverEntry( + DRIVER_OBJECT *driver_object, + UNICODE_STRING *registry_path) { driver_object->DriverUnload = on_driver_unload; hook_sysenter(); |