Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 596a58f

Browse files
committed
Fix the other problem
1 parent 3350aa0 commit 596a58f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_testexternalinspection.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ read_py_long(pid_t pid, _Py_DebugOffsets* offsets, uintptr_t address)
641641
return 0;
642642
}
643643

644-
char *digits = (char *)PyMem_RawMalloc(size * sizeof(digit));
644+
digit *digits = (digit *)PyMem_RawMalloc(size * sizeof(digit));
645645
if (!digits) {
646646
PyErr_NoMemory();
647647
return -1;

0 commit comments

Comments
 (0)