diff options
author | Joel Brobecker <brobecker@adacore.com> | 2013-11-27 17:54:43 +0400 |
---|---|---|
committer | Joel Brobecker <brobecker@adacore.com> | 2013-12-13 09:48:35 +0100 |
commit | fb5e3d5c693cf9d56188a0ebd7ead5eba99bfdb4 (patch) | |
tree | e9ab944cbf96a597527af21eed913098a1311ac9 /gdb/ada-lang.c | |
parent | a16b0e220dfc49ed814e779d45faab84e31a4e42 (diff) | |
download | gdb-fb5e3d5c693cf9d56188a0ebd7ead5eba99bfdb4.zip gdb-fb5e3d5c693cf9d56188a0ebd7ead5eba99bfdb4.tar.gz gdb-fb5e3d5c693cf9d56188a0ebd7ead5eba99bfdb4.tar.bz2 |
Small style violation fix in ada_array_bound_from_type
gdb/ChangeLog:
* ada-lang.c (ada_array_bound_from_type): Remove unwanted space
between 'struct type *' and 'arr_type'.
Diffstat (limited to 'gdb/ada-lang.c')
-rw-r--r-- | gdb/ada-lang.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index 786ca7a..19ddf5d 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -2788,7 +2788,7 @@ ada_index_type (struct type *type, int n, const char *name) by run-time quantities other than discriminants. */ static LONGEST -ada_array_bound_from_type (struct type * arr_type, int n, int which) +ada_array_bound_from_type (struct type *arr_type, int n, int which) { struct type *type, *elt_type, *index_type_desc, *index_type; int i; |