[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
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B

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