diff options
| author | Benjamin Peterson <benjamin@python.org> | 2013-02-20 21:56:06 (GMT) |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2013-02-20 21:56:06 (GMT) |
| commit | abe40c252869264ff6cc42d3a91e38b3dad3b1b2 (patch) | |
| tree | 6c6ed2bc42a81501299132e70511439328249d32 /Objects | |
| parent | 92bd4ef640e749833a16b09705f546af9c18522c (diff) | |
| parent | 2dba1ee3e62f613f8fbf85b997601789fc8f80d1 (diff) | |
| download | cpython-abe40c252869264ff6cc42d3a91e38b3dad3b1b2.zip cpython-abe40c252869264ff6cc42d3a91e38b3dad3b1b2.tar.gz cpython-abe40c252869264ff6cc42d3a91e38b3dad3b1b2.tar.bz2 | |
merge 3.3 (#17228)
Diffstat (limited to 'Objects')
| -rw-r--r-- | Objects/obmalloc.c | 2 |
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; |
