[NTOS:MM] MmFlushSegment(): Fix Iosb annotation

Addendum to 90c6a65.
This commit is contained in:
Serge Gautherie 2021-05-24 08:56:17 +02:00 committed by George Bișoc
parent 6d441f7d65
commit eab2bb4b20
2 changed files with 2 additions and 2 deletions

View file

@ -1434,7 +1434,7 @@ MmFlushSegment(
_In_ PSECTION_OBJECT_POINTERS SectionObjectPointer,
_In_opt_ PLARGE_INTEGER Offset,
_In_ ULONG Length,
_In_opt_ PIO_STATUS_BLOCK Iosb);
_Out_opt_ PIO_STATUS_BLOCK Iosb);
NTSTATUS
NTAPI

View file

@ -4663,7 +4663,7 @@ MmFlushSegment(
_In_ PSECTION_OBJECT_POINTERS SectionObjectPointer,
_In_opt_ PLARGE_INTEGER Offset,
_In_ ULONG Length,
_In_opt_ PIO_STATUS_BLOCK Iosb)
_Out_opt_ PIO_STATUS_BLOCK Iosb)
{
LARGE_INTEGER FlushStart, FlushEnd;
NTSTATUS Status;