Commit 855fc882 authored by Victor Stinner's avatar Victor Stinner

Issue #23848: Fix usage of _Py_DumpDecimal()

parent 5df112ee
......@@ -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");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment