mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 05:25:48 +00:00
[REACTOS] Fix 64 bit issues
This commit is contained in:
parent
0f8439aa71
commit
cf77354dce
11 changed files with 36 additions and 26 deletions
|
@ -166,9 +166,12 @@ KeBugCheckEx(
|
|||
IN ULONG_PTR BugCheckParameter4)
|
||||
{
|
||||
char Buffer[70];
|
||||
printf("*** STOP: 0x%08X (0x%08lX, 0x%08lX, 0x%08lX, 0x%08lX)",
|
||||
BugCheckCode, BugCheckParameter1, BugCheckParameter2,
|
||||
BugCheckParameter3, BugCheckParameter4);
|
||||
printf("*** STOP: 0x%08X (0x%p,0x%p,0x%p,0x%p)",
|
||||
BugCheckCode,
|
||||
(PVOID)BugCheckParameter1,
|
||||
(PVOID)BugCheckParameter2,
|
||||
(PVOID)BugCheckParameter3,
|
||||
(PVOID)BugCheckParameter4);
|
||||
ASSERT(FALSE);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue