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

Skip to content

Commit abe40c2

Browse files
committed
merge 3.3 (#17228)
2 parents 92bd4ef + 2dba1ee commit abe40c2

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -940,6 +940,8 @@ Tests
940940
Build
941941
-----
942942

943+
- Issue #17228: Fix building without pymalloc.
944+
943945
- Issue #3718: Use AC_ARG_VAR to set MACHDEP in configure.ac.
944946

945947
- Issue #16235: Implement python-config as a shell script.

Objects/obmalloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1763,7 +1763,7 @@ printone(FILE *out, const char* msg, size_t value)
17631763
k = 3;
17641764
do {
17651765
size_t nextvalue = value / 10;
1766-
uint digit = (uint)(value - nextvalue * 10);
1766+
unsigned int digit = (unsigned int)(value - nextvalue * 10);
17671767
value = nextvalue;
17681768
buf[i--] = (char)(digit + '0');
17691769
--k;

0 commit comments

Comments
 (0)