Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 339294 Details for
Bug 458168
dev-lang/python-3.3.0 fails to build on Mac OS X [bootstrap broken, patch included]
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch to use unsigned int when preprocessor definitions are unavailable
python-3.3.0-rename-uint.patch (text/plain), 475 bytes, created by
Richard Yao (RETIRED)
on 2013-02-18 19:49:05 UTC
(
hide
)
Description:
Patch to use unsigned int when preprocessor definitions are unavailable
Filename:
MIME Type:
Creator:
Richard Yao (RETIRED)
Created:
2013-02-18 19:49:05 UTC
Size:
475 bytes
patch
obsolete
>diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c >index 9254821..bc42327 100644 >--- a/Objects/obmalloc.c >+++ b/Objects/obmalloc.c >@@ -1740,7 +1740,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;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 458168
: 339294 |
339296