mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
[NTOSKRNL] Fix MSVC build: don't attempt to return in a void function
This commit is contained in:
parent
ec6b3ecbe4
commit
2284a457a3
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue