sys: rename FspIopCompleteRequest to FspIopCompleteIrp

This commit is contained in:
Bill Zissimopoulos
2015-12-06 18:06:19 -08:00
parent f46f567a56
commit 18025573a3
4 changed files with 11 additions and 11 deletions

View File

@ -395,7 +395,7 @@ retry:
Result = FspIopDispatchPrepare(PendingIrp, PendingIrpRequest);
if (!NT_SUCCESS(Result))
FspIopCompleteRequest(PendingIrp, Result);
FspIopCompleteIrp(PendingIrp, Result);
else
{
NextRequest = FspFsctlTransactProduceRequest(
@ -415,7 +415,7 @@ retry:
* also cancel the PendingIrp we have in our hands.
*/
ASSERT(FspIoqStopped(&FsvrtDeviceExtension->Ioq));
FspIopCompleteRequest(PendingIrp, STATUS_CANCELLED);
FspIopCompleteIrp(PendingIrp, STATUS_CANCELLED);
return STATUS_CANCELLED;
}