mirror of
https://github.com/reactos/reactos.git
synced 2025-05-24 03:24:45 +00:00
[CLASS2]
Fix 64 bit warnings svn path=/trunk/; revision=55510
This commit is contained in:
parent
14ba04899c
commit
680bfb5aa7
1 changed files with 2 additions and 2 deletions
|
@ -1510,7 +1510,7 @@ Return Value:
|
|||
srb,
|
||||
irpStack->MajorFunction,
|
||||
irpStack->MajorFunction == IRP_MJ_DEVICE_CONTROL ? irpStack->Parameters.DeviceIoControl.IoControlCode : 0,
|
||||
MAXIMUM_RETRIES - ((ULONG_PTR)irpStack->Parameters.Others.Argument4),
|
||||
MAXIMUM_RETRIES - PtrToUlong(irpStack->Parameters.Others.Argument4),
|
||||
&status);
|
||||
|
||||
//
|
||||
|
@ -1662,7 +1662,7 @@ Return Value:
|
|||
srb,
|
||||
irpStack->MajorFunction,
|
||||
irpStack->MajorFunction == IRP_MJ_DEVICE_CONTROL ? irpStack->Parameters.DeviceIoControl.IoControlCode : 0,
|
||||
MAXIMUM_RETRIES - ((ULONG_PTR)irpStack->Parameters.Others.Argument4),
|
||||
MAXIMUM_RETRIES - PtrToUlong(irpStack->Parameters.Others.Argument4),
|
||||
&status);
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue