mirror of
https://github.com/python/cpython.git
synced 2025-11-11 22:55:08 +00:00
Issue #23848: Fix usage of _Py_DumpDecimal()
This commit is contained in:
parent
f963c13597
commit
82d44f0598
1 changed files with 1 additions and 1 deletions
|
|
@ -388,7 +388,7 @@ faulthandler_exc_handler(struct _EXCEPTION_POINTERS *exc_info)
|
||||||
case EXCEPTION_STACK_OVERFLOW: PUTS(fd, "stack overflow"); break;
|
case EXCEPTION_STACK_OVERFLOW: PUTS(fd, "stack overflow"); break;
|
||||||
default:
|
default:
|
||||||
PUTS(fd, "code ");
|
PUTS(fd, "code ");
|
||||||
_Py_DumpDecimal(fd, code, sizeof(DWORD));
|
_Py_DumpDecimal(fd, code);
|
||||||
}
|
}
|
||||||
PUTS(fd, "\n\n");
|
PUTS(fd, "\n\n");
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue