mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[KERNEL32] Fix printing exception address
This commit is contained in:
parent
f8b6cc249e
commit
f96bee30ed
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ PrintStackTrace(IN PEXCEPTION_POINTERS ExceptionInfo)
|
|||
if (ExceptionRecord->ExceptionCode == STATUS_ACCESS_VIOLATION &&
|
||||
ExceptionRecord->NumberParameters == 2)
|
||||
{
|
||||
DbgPrint("Faulting Address: %8x\n", ExceptionRecord->ExceptionInformation[1]);
|
||||
DbgPrint("Faulting Address: %p\n", (PVOID)ExceptionRecord->ExceptionInformation[1]);
|
||||
}
|
||||
|
||||
/* Trace the wine special error and show the modulename and functionname */
|
||||
|
|
Loading…
Reference in a new issue