summaryrefslogtreecommitdiff
path: root/gdb/f-valprint.c
diff options
context:
space:
mode:
authorqiyao <qiyao>2012-11-26 13:26:57 +0000
committerqiyao <qiyao>2012-11-26 13:26:57 +0000
commit077a4ce440fab9a5d7c454a6d5063752f362d3c3 (patch)
tree65e6afc1b79cff535d56c9650cdc823f98be8cad /gdb/f-valprint.c
parent7997531c53969c824499ea3d18acf3e58cd38907 (diff)
downloadgdb-077a4ce440fab9a5d7c454a6d5063752f362d3c3.tar.gz
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/f-valprint.c b/gdb/f-valprint.c
index c3d23833173..b40b8fab679 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);