[NTOS:KD/KD64] Fix x64 build.

This commit is contained in:
Hermès Bélusca-Maïto 2019-11-18 01:33:06 +01:00
parent ea6d427d10
commit 548393c6e7
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
2 changed files with 2 additions and 2 deletions

View file

@ -131,7 +131,7 @@ KdpServiceDispatcher(ULONG Service,
/* Special case for stack frame dumps */
case 'DsoR':
{
KeRosDumpStackFrames((PULONG)Buffer1, Buffer1Length);
KeRosDumpStackFrames((PULONG_PTR)Buffer1, Buffer1Length);
break;
}

View file

@ -2193,7 +2193,7 @@ KdSystemDebugControl(
/* Special case for stack frame dumps */
case 'DsoR':
{
KeRosDumpStackFrames((PULONG)InputBuffer, InputBufferLength);
KeRosDumpStackFrames((PULONG_PTR)InputBuffer, InputBufferLength);
break;
}
#endif