diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/python/py-dap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/python/py-dap.c b/gdb/python/py-dap.c index 8e977bc..9c77b2a 100644 --- a/gdb/python/py-dap.c +++ b/gdb/python/py-dap.c @@ -1,6 +1,6 @@ /* Python DAP interpreter - Copyright (C) 2022 Free Software Foundation, Inc. + Copyright (C) 2022, 2023 Free Software Foundation, Inc. This file is part of GDB. @@ -80,7 +80,7 @@ dap_interp::init (bool top_level) if (func == nullptr) gdbpy_handle_exception (); - gdbpy_ref<> result_obj (PyObject_CallNoArgs (func.get ())); + gdbpy_ref<> result_obj (PyObject_CallObject (func.get (), nullptr)); if (result_obj == nullptr) gdbpy_handle_exception (); |