mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
- Fix accidentally committed change in a function prototype. Spotted by Stefan Ginsberg.
svn path=/trunk/; revision=41361
This commit is contained in:
parent
77af3a18bd
commit
bbccb19127
2 changed files with 4 additions and 4 deletions
|
@ -92,7 +92,7 @@ IopUpdateOperationCount(IN IOP_TRANSFER_TYPE Type)
|
|||
static
|
||||
__inline
|
||||
VOID
|
||||
IopUpdateTransferCount(IN IOP_TRANSFER_TYPE Type, IN ULONG_PTR TransferCount)
|
||||
IopUpdateTransferCount(IN IOP_TRANSFER_TYPE Type, IN ULONG TransferCount)
|
||||
{
|
||||
PLARGE_INTEGER CountToChange;
|
||||
PLARGE_INTEGER TransferToChange;
|
||||
|
|
|
@ -400,19 +400,19 @@ IopCompleteRequest(IN PKAPC Apc,
|
|||
{
|
||||
/* Update write transfer count */
|
||||
IopUpdateTransferCount(IopWriteTransfer,
|
||||
Irp->IoStatus.Information);
|
||||
(ULONG)Irp->IoStatus.Information);
|
||||
}
|
||||
else if (Irp->Flags & IRP_READ_OPERATION)
|
||||
{
|
||||
/* Update read transfer count */
|
||||
IopUpdateTransferCount(IopReadTransfer,
|
||||
Irp->IoStatus.Information);
|
||||
(ULONG)Irp->IoStatus.Information);
|
||||
}
|
||||
else
|
||||
{
|
||||
/* Update other transfer count */
|
||||
IopUpdateTransferCount(IopOtherTransfer,
|
||||
Irp->IoStatus.Information);
|
||||
(ULONG)Irp->IoStatus.Information);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue