* python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
This commit is contained in:
parent
43a028780f
commit
29ca12b317
2 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue