mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
- Fix copypaste typo in IopUpdateOperationCount
svn path=/trunk/; revision=39620
This commit is contained in:
@@ -75,13 +75,13 @@ IopUpdateOperationCount(IN IOP_TRANSFER_TYPE Type)
|
||||
{
|
||||
/* Increase write count */
|
||||
IoWriteOperationCount++;
|
||||
CountToChange = &PsGetCurrentProcess()->ReadOperationCount;
|
||||
CountToChange = &PsGetCurrentProcess()->WriteOperationCount;
|
||||
}
|
||||
else
|
||||
{
|
||||
/* Increase other count */
|
||||
IoOtherOperationCount++;
|
||||
CountToChange = &PsGetCurrentProcess()->ReadOperationCount;
|
||||
CountToChange = &PsGetCurrentProcess()->OtherOperationCount;
|
||||
}
|
||||
|
||||
/* Increase the process-wide count */
|
||||
|
||||
Reference in New Issue
Block a user