aboutsummaryrefslogtreecommitdiff
path: root/gdb/python
diff options
context:
space:
mode:
authorTom de Vries <tdevries@suse.de>2026-01-29 21:18:52 +0100
committerTom de Vries <tdevries@suse.de>2026-01-29 21:18:52 +0100
commit49dcedc4472dc8138667141efe57a6043f614f61 (patch)
tree001bd0e98251b8fa88a0130627dfe6617e7f2e86 /gdb/python
parent68567c5479cee1fd7f94be3b71f7bce88014b22a (diff)
downloadbinutils-49dcedc4472dc8138667141efe57a6043f614f61.tar.gz
binutils-49dcedc4472dc8138667141efe57a6043f614f61.tar.bz2
binutils-49dcedc4472dc8138667141efe57a6043f614f61.zip
[gdb/python] Fix whitespace in py-ref.h
Fix a whitespace problem pre-commit complains about: ... check-whitespace........................................................Failed - hook id: check-whitespace - exit code: 2 gdb/python/py-ref.h:58: indent with spaces. + "The __dict__ for this object.", nullptr }, ...
Diffstat (limited to 'gdb/python')
-rw-r--r--gdb/python/py-ref.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/py-ref.h b/gdb/python/py-ref.h
index 1d07eeb3dc9..4ce7e29357d 100644
--- a/gdb/python/py-ref.h
+++ b/gdb/python/py-ref.h
@@ -55,7 +55,7 @@ template<typename T = PyObject> using gdbpy_ref
gdb_PyGetSetDef my_object_getset[] =
{
{ "__dict__", gdb_py_generic_dict_getter, nullptr,
- "The __dict__ for this object.", nullptr },
+ "The __dict__ for this object.", nullptr },
...
{ nullptr }
};