Fix indentation in value_has_field
authorTom Tromey <tromey@adacore.com>
Mon, 19 Aug 2019 18:46:03 +0000 (12:46 -0600)
committerTom Tromey <tromey@adacore.com>
Mon, 19 Aug 2019 18:46:03 +0000 (12:46 -0600)
value_has_field had a mis-indented line.  This fixes it.

gdb/ChangeLog
2019-08-19  Tom Tromey  <tromey@adacore.com>

* python/py-value.c (value_has_field): Fix indentation.

gdb/ChangeLog
gdb/python/py-value.c

index 6c9b2e0..2dce609 100644 (file)
@@ -1,5 +1,9 @@
 2019-08-19  Tom Tromey  <tromey@adacore.com>
 
+       * python/py-value.c (value_has_field): Fix indentation.
+
+2019-08-19  Tom Tromey  <tromey@adacore.com>
+
        * printcmd.c (do_one_display, info_display_command): Update.
        * block.h (contained_in): Return bool.  Add allow_nested
        parameter.
index 0ffd0b0..ede4c0e 100644 (file)
@@ -847,7 +847,7 @@ value_has_field (struct value *v, PyObject *field)
       val_type = value_type (v);
       val_type = check_typedef (val_type);
       if (TYPE_IS_REFERENCE (val_type) || TYPE_CODE (val_type) == TYPE_CODE_PTR)
-      val_type = check_typedef (TYPE_TARGET_TYPE (val_type));
+       val_type = check_typedef (TYPE_TARGET_TYPE (val_type));
 
       type_code = TYPE_CODE (val_type);
       if ((type_code == TYPE_CODE_STRUCT || type_code == TYPE_CODE_UNION)