Skip to content

Commit 855fc88

Browse files
committed
Issue #23848: Fix usage of _Py_DumpDecimal()
1 parent 5df112e commit 855fc88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/faulthandler.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ faulthandler_exc_handler(struct _EXCEPTION_POINTERS *exc_info)
388388
case EXCEPTION_STACK_OVERFLOW: PUTS(fd, "stack overflow"); break;
389389
default:
390390
PUTS(fd, "code ");
391-
_Py_DumpDecimal(fd, code, sizeof(DWORD));
391+
_Py_DumpDecimal(fd, code);
392392
}
393393
PUTS(fd, "\n\n");
394394

0 commit comments

Comments
 (0)