Issue #23848: Fix usage of _Py_DumpDecimal()

This commit is contained in:
Victor Stinner 2016-03-23 18:37:54 +01:00
parent f963c13597
commit 82d44f0598
1 changed files with 1 additions and 1 deletions

View File

@ -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");