diff options
Diffstat (limited to '')
-rw-r--r-- | src/nt_path_converter/main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nt_path_converter/main.c b/src/nt_path_converter/main.c index 0dac5c9..7d12e54 100644 --- a/src/nt_path_converter/main.c +++ b/src/nt_path_converter/main.c @@ -15,8 +15,9 @@ static void on_driver_unload(DRIVER_OBJECT *driver_object) destroy_devices(); } -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; return set_up_devices(driver_object); |