diff options
Diffstat (limited to 'gdb/python/python.c')
-rw-r--r-- | gdb/python/python.c | 2 |
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; |