From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12567 invoked by alias); 2 Mar 2009 22:55:36 -0000 Mailing-List: contact archer-commits-help@sourceware.org; run by ezmlm Sender: Precedence: bulk List-Post: List-Help: List-Subscribe: Received: (qmail 12527 invoked by uid 9674); 2 Mar 2009 22:55:35 -0000 Date: Mon, 02 Mar 2009 22:55:00 -0000 Message-ID: <20090302225535.12512.qmail@sourceware.org> From: jkratoch@sourceware.org To: archer-commits@sourceware.org Subject: [SCM] archer-jankratochvil-python: Workaround 32bit build error. X-Git-Refname: refs/heads/archer-jankratochvil-python X-Git-Reftype: branch X-Git-Oldrev: 2fac9534dc2dc85f7c999b94574cf0acf1767dd6 X-Git-Newrev: 0e14f16bcca6dcff35ca4c23f71dcfc0a221acbc X-SW-Source: 2009-q1/txt/msg00235.txt.bz2 List-Id: The branch, archer-jankratochvil-python has been updated via 0e14f16bcca6dcff35ca4c23f71dcfc0a221acbc (commit) from 2fac9534dc2dc85f7c999b94574cf0acf1767dd6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email. - Log ----------------------------------------------------------------- ----------------------------------------------------------------------- Summary of changes: gdb/python/python-membuf.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) First 500 lines of diff: diff --git a/gdb/python/python-membuf.c b/gdb/python/python-membuf.c index 04bf3b4..57836f9 100644 --- a/gdb/python/python-membuf.c +++ b/gdb/python/python-membuf.c @@ -126,7 +126,7 @@ mbpy_str (PyObject *self) membuf_object *membuf_obj = (membuf_object *) self; return PyString_FromFormat ("memory buffer for address %p, %u bytes long", - (void *) membuf_obj->addr, + (void *) (uintptr_t) membuf_obj->addr, (unsigned int) membuf_obj->length); } hooks/post-receive -- Repository for Project Archer.