aboutsummaryrefslogtreecommitdiff
path: root/gdb/python
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2012-05-15 20:26:10 +0000
committerTom Tromey <tromey@redhat.com>2012-05-15 20:26:10 +0000
commit29ca12b3176433cfe360cbfab289f0474b861fc8 (patch)
tree20927795b84d7e35a3497b2e6f6eb5ff1acaae63 /gdb/python
parent43a028780f9dfc8478a438df6485041462173740 (diff)
downloadgdb-29ca12b3176433cfe360cbfab289f0474b861fc8.zip
gdb-29ca12b3176433cfe360cbfab289f0474b861fc8.tar.gz
gdb-29ca12b3176433cfe360cbfab289f0474b861fc8.tar.bz2
* python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
Diffstat (limited to 'gdb/python')
-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 9a80dea..57ef643 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;