From: Tom Tromey Date: Tue, 15 May 2012 20:26:10 +0000 (+0000) Subject: * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=29ca12b3176433cfe360cbfab289f0474b861fc8;p=deliverable%2Fbinutils-gdb.git * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2af1f5911f..d6af2ce709 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2012-05-15 Tom Tromey + + * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest. + 2012-05-15 Joel Brobecker * breakpoint.c (init_breakpoint_sal): Add quotes around part diff --git a/gdb/python/python.c b/gdb/python/python.c index 9a80deaf63..57ef6436c0 100644 --- a/gdb/python/python.c +++ b/gdb/python/python.c @@ -639,7 +639,7 @@ gdbpy_find_pc_line (PyObject *self, PyObject *args) { struct symtab_and_line sal; CORE_ADDR pc; - ULONGEST pc_llu; + gdb_py_ulongest pc_llu; if (!PyArg_ParseTuple (args, GDB_PY_LLU_ARG, &pc_llu)) return NULL;