Issue #23848: Fix usage of _Py_DumpDecimal()
This commit is contained in:
parent
f963c13597
commit
82d44f0598
|
@ -388,7 +388,7 @@ faulthandler_exc_handler(struct _EXCEPTION_POINTERS *exc_info)
|
|||
case EXCEPTION_STACK_OVERFLOW: PUTS(fd, "stack overflow"); break;
|
||||
default:
|
||||
PUTS(fd, "code ");
|
||||
_Py_DumpDecimal(fd, code, sizeof(DWORD));
|
||||
_Py_DumpDecimal(fd, code);
|
||||
}
|
||||
PUTS(fd, "\n\n");
|
||||
|
||||
|
|
Loading…
Reference in New Issue