[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
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