From 9f676e6662c83541120a3a69737e6561fe24f08c Mon Sep 17 00:00:00 2001 From: Siva Chandra Reddy Date: Mon, 14 May 2012 03:06:47 +0000 Subject: 2012-05-14 Siva Chandra Reddy * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of unsigned long long. --- 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 5e5f980..9a80dea 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; - unsigned long long pc_llu; + ULONGEST pc_llu; if (!PyArg_ParseTuple (args, GDB_PY_LLU_ARG, &pc_llu)) return NULL; -- cgit v1.1