summaryrefslogtreecommitdiff
path: root/gdb/python/python.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2012-05-15 20:26:06 +0000
committerTom Tromey <tromey@redhat.com>2012-05-15 20:26:06 +0000
commitb52d83c1671735c2d7536bdb333801a47af0398a (patch)
tree9fe7bfaf9bae9af3b7d795b1bff4e21eb017fc5f /gdb/python/python.c
parentfabc80cb371b07a92be760f00713f007b658632e (diff)
downloadgdb-b52d83c1671735c2d7536bdb333801a47af0398a.tar.gz
* python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
Diffstat (limited to 'gdb/python/python.c')
-rw-r--r--gdb/python/python.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/python.c b/gdb/python/python.c
index 9a80deaf63b..57ef6436c0e 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;