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 6022572..b0b9a9c 100644 --- a/gdb/python/python.c +++ b/gdb/python/python.c @@ -512,7 +512,7 @@ gdbpy_decode_line (PyObject *self, PyObject *args) { copy = xstrdup (arg); make_cleanup (xfree, copy); - sals = decode_line_1 (©, 0, 0, 0, 0); + sals = decode_line_1 (©, 0, 0, 0); make_cleanup (xfree, sals.sals); } else |