From f32feb4ab3c30a9a80e890a51ceb94b7446bd4ea Mon Sep 17 00:00:00 2001 From: Christian Biesinger Date: Thu, 25 Jul 2019 17:17:49 -0500 Subject: [PATCH] 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 * python/py-objfile.c (add_separate_debug_file): Fix comment about this function's Python signature. --- gdb/ChangeLog | 8 +++++++- gdb/python/py-objfile.c | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e24988858b..a1d39b9014 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,4 +1,10 @@ -2019-07-22 Christian Biesinger +2019-07-25 Christian Biesinger + + * python/py-objfile.c (add_separate_debug_file): Fix comment about + this function's Python signature. + + +2019-07-24 Christian Biesinger * compile/compile-object-load.c (compile_object_load): Pass GLOBAL_SCOPE. * solib-spu.c (spu_lookup_lib_symbol): Pass GLOBAL_SCOPE. diff --git a/gdb/python/py-objfile.c b/gdb/python/py-objfile.c index 199c567a04..15735c8501 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) -- 2.34.1