mirror of
https://github.com/reactos/reactos.git
synced 2026-06-08 00:46:10 +08:00
[NTOSKRNL] Fix MSVC build: don't attempt to return in a void function
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user