diff options
author | Yao Qi <yao@codesourcery.com> | 2012-11-26 13:26:57 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2012-11-26 13:26:57 +0000 |
commit | 9c16be9afa30916420fd406dc0184c6665ee716c (patch) | |
tree | 0999326a6798ec576aa27bafc861a6c104ae8e7e /gdb/f-valprint.c | |
parent | e6f3fa525639234ce5cff5159344af18f6d75d6b (diff) | |
download | gdb-9c16be9afa30916420fd406dc0184c6665ee716c.zip gdb-9c16be9afa30916420fd406dc0184c6665ee716c.tar.gz gdb-9c16be9afa30916420fd406dc0184c6665ee716c.tar.bz2 |
gdb/
2012-11-26 Yao Qi <yao@codesourcery.com>
* f-valprint.c (f77_create_arrayprint_offset_tbl): Remove
extraneous parentheses.
Diffstat (limited to 'gdb/f-valprint.c')
-rw-r--r-- | gdb/f-valprint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/f-valprint.c b/gdb/f-valprint.c index c3d2383..b40b8fab 100644 --- a/gdb/f-valprint.c +++ b/gdb/f-valprint.c @@ -128,7 +128,7 @@ f77_create_arrayprint_offset_tbl (struct type *type, struct ui_file *stream) tmp_type = type; - while ((TYPE_CODE (tmp_type) == TYPE_CODE_ARRAY)) + while (TYPE_CODE (tmp_type) == TYPE_CODE_ARRAY) { upper = f77_get_upperbound (tmp_type); lower = f77_get_lowerbound (tmp_type); |