diff options
author | Joel Brobecker <brobecker@adacore.com> | 2014-01-15 18:27:09 +0400 |
---|---|---|
committer | Joel Brobecker <brobecker@adacore.com> | 2014-01-27 08:19:54 +0400 |
commit | e62e21fd47826fd5501e7e06106c202763e7b260 (patch) | |
tree | c9f655abdc0ae143e2e31aa40f6e848fb1e308ab | |
parent | 859cf5d1dea467019bf0a822eeda059427ecf440 (diff) | |
download | gdb-e62e21fd47826fd5501e7e06106c202763e7b260.zip gdb-e62e21fd47826fd5501e7e06106c202763e7b260.tar.gz gdb-e62e21fd47826fd5501e7e06106c202763e7b260.tar.bz2 |
Add missing empty line after declaration in ada-typeprint.c:print_range.
gdb/ChangeLog:
* ada-typeprint.c (print_range): Add missing empty line
after local declaration.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/ada-typeprint.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a96b342..721966d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2014-01-27 Joel Brobecker <brobecker@adacore.com> + * ada-typeprint.c (print_range): Add missing empty line + after local declaration. + +2014-01-27 Joel Brobecker <brobecker@adacore.com> + * ada-valprint.c (print_optional_low_bound): Get index_type's target type for as long as it is a TYPE_CODE_RANGE. diff --git a/gdb/ada-typeprint.c b/gdb/ada-typeprint.c index 03c345a..f64ec41 100644 --- a/gdb/ada-typeprint.c +++ b/gdb/ada-typeprint.c @@ -131,6 +131,7 @@ print_range (struct type *type, struct ui_file *stream) case TYPE_CODE_ENUM: { struct type *target_type; + target_type = TYPE_TARGET_TYPE (type); if (target_type == NULL) target_type = type; |