mirror of
https://github.com/reactos/reactos.git
synced 2026-05-31 16:31:07 +08:00
[NTOS:KD/KD64] Fix x64 build.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user