From b52d83c1671735c2d7536bdb333801a47af0398a Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 15 May 2012 20:26:06 +0000 Subject: * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest. --- gdb/python/python.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/python/python.c') 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; -- cgit v1.2.1