[NTOSKRNL] Fix MSVC build: don't attempt to return in a void function

This commit is contained in:
Pierre Schweitzer
2017-11-18 18:38:36 +01:00
parent ec6b3ecbe4
commit 2284a457a3

View File

@@ -63,7 +63,7 @@ FsRtlNotifyCompletion(IN PVOID Context,
DPRINT("FsRtlNotifyCompletion(%p, %p)\n", Context, Irp);
/* Just complete the IRP */
return IoCompleteRequest(Irp, IO_DISK_INCREMENT);
IoCompleteRequest(Irp, IO_DISK_INCREMENT);
}
VOID