mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[NTOS:KD/KD64] Fix x64 build.
This commit is contained in:
parent
ea6d427d10
commit
548393c6e7
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -2193,7 +2193,7 @@ KdSystemDebugControl(
|
|||
/* Special case for stack frame dumps */
|
||||
case 'DsoR':
|
||||
{
|
||||
KeRosDumpStackFrames((PULONG)InputBuffer, InputBufferLength);
|
||||
KeRosDumpStackFrames((PULONG_PTR)InputBuffer, InputBufferLength);
|
||||
break;
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue