aboutsummaryrefslogtreecommitdiff
path: root/gdb/python/py-objfile.c
diff options
context:
space:
mode:
authorChristian Biesinger <cbiesinger@google.com>2019-07-25 17:17:49 -0500
committerChristian Biesinger <cbiesinger@google.com>2019-07-25 17:17:49 -0500
commitf32feb4ab3c30a9a80e890a51ceb94b7446bd4ea (patch)
treefe02ecaf7fe9f49901c065a67cd45628f45a6ccb /gdb/python/py-objfile.c
parent297989a10c56aec56eab0ee63f1e61c33ab20905 (diff)
downloadbinutils-f32feb4ab3c30a9a80e890a51ceb94b7446bd4ea.zip
binutils-f32feb4ab3c30a9a80e890a51ceb94b7446bd4ea.tar.gz
binutils-f32feb4ab3c30a9a80e890a51ceb94b7446bd4ea.tar.bz2
Fix comment about the signature of add_separate_debug_file
Also fixes the date in the changelog of my last commit. gdb/ChangeLog: 2019-07-25 Christian Biesinger <cbiesinger@google.com> * python/py-objfile.c (add_separate_debug_file): Fix comment about this function's Python signature.
Diffstat (limited to 'gdb/python/py-objfile.c')
-rw-r--r--gdb/python/py-objfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/py-objfile.c b/gdb/python/py-objfile.c
index 199c567..15735c8 100644
--- a/gdb/python/py-objfile.c
+++ b/gdb/python/py-objfile.c
@@ -406,7 +406,7 @@ objfpy_is_valid (PyObject *self, PyObject *args)
Py_RETURN_TRUE;
}
-/* Implementation of gdb.Objfile.add_separate_debug_file (self) -> Boolean. */
+/* Implementation of gdb.Objfile.add_separate_debug_file (self, string). */
static PyObject *
objfpy_add_separate_debug_file (PyObject *self, PyObject *args, PyObject *kw)