summaryrefslogtreecommitdiffstats
path: root/Objects/obmalloc.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-02-20 21:56:06 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-02-20 21:56:06 (GMT)
commitabe40c252869264ff6cc42d3a91e38b3dad3b1b2 (patch)
tree6c6ed2bc42a81501299132e70511439328249d32 /Objects/obmalloc.c
parent92bd4ef640e749833a16b09705f546af9c18522c (diff)
parent2dba1ee3e62f613f8fbf85b997601789fc8f80d1 (diff)
downloadcpython-abe40c252869264ff6cc42d3a91e38b3dad3b1b2.zip
cpython-abe40c252869264ff6cc42d3a91e38b3dad3b1b2.tar.gz
cpython-abe40c252869264ff6cc42d3a91e38b3dad3b1b2.tar.bz2
merge 3.3 (#17228)
Diffstat (limited to 'Objects/obmalloc.c')
-rw-r--r--Objects/obmalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c
index bbe2805..5943f5a 100644
--- a/Objects/obmalloc.c
+++ b/Objects/obmalloc.c
@@ -1763,7 +1763,7 @@ printone(FILE *out, const char* msg, size_t value)
k = 3;
do {
size_t nextvalue = value / 10;
- uint digit = (uint)(value - nextvalue * 10);
+ unsigned int digit = (unsigned int)(value - nextvalue * 10);
value = nextvalue;
buf[i--] = (char)(digit + '0');
--k;