]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
[gdb/python] Fix whitespace in py-ref.h
authorTom de Vries <tdevries@suse.de>
Thu, 29 Jan 2026 20:18:52 +0000 (21:18 +0100)
committerTom de Vries <tdevries@suse.de>
Thu, 29 Jan 2026 20:18:52 +0000 (21:18 +0100)
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 },
...

gdb/python/py-ref.h

index 1d07eeb3dc95319321187d9c027aa2d5c21369fe..4ce7e29357d015b031acbdda6bf56e3f2ab58083 100644 (file)
@@ -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 }
      };