diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-09-26 22:33:09 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-09-26 22:39:44 -0400 |
commit | c11f01dbbdfb8e9f437b13e31ba89c50a6fb8db6 (patch) | |
tree | 50c8d5799f017c979eedeb57b68e99bf3416bd96 | |
parent | bf86d80dd2dc01ba8ab37d8c8c6e376075580c3b (diff) | |
download | binutils-c11f01dbbdfb8e9f437b13e31ba89c50a6fb8db6.zip binutils-c11f01dbbdfb8e9f437b13e31ba89c50a6fb8db6.tar.gz binutils-c11f01dbbdfb8e9f437b13e31ba89c50a6fb8db6.tar.bz2 |
gdb: fix indentation in gdbtypes.c
Change-Id: I7bfbb9d349a1f474256800c45e28fe3b1de08771
-rw-r--r-- | gdb/gdbtypes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbtypes.c b/gdb/gdbtypes.c index 67593da..be7c74a 100644 --- a/gdb/gdbtypes.c +++ b/gdb/gdbtypes.c @@ -1852,7 +1852,7 @@ lookup_struct_elt (struct type *type, const char *name, int noerr) { return {&type->field (i), TYPE_FIELD_BITPOS (type, i)}; } - else if (!t_field_name || *t_field_name == '\0') + else if (!t_field_name || *t_field_name == '\0') { struct_elt elt = lookup_struct_elt (type->field (i).type (), name, 1); |