gdb/
authorYao Qi <yao@codesourcery.com>
Mon, 26 Nov 2012 13:26:57 +0000 (13:26 +0000)
committerYao Qi <yao@codesourcery.com>
Mon, 26 Nov 2012 13:26:57 +0000 (13:26 +0000)
2012-11-26  Yao Qi  <yao@codesourcery.com>

* f-valprint.c (f77_create_arrayprint_offset_tbl): Remove
extraneous parentheses.

gdb/ChangeLog
gdb/f-valprint.c

index c5d5fc2..57aee09 100644 (file)
@@ -1,5 +1,10 @@
 2012-11-26  Yao Qi  <yao@codesourcery.com>
 
+       * f-valprint.c (f77_create_arrayprint_offset_tbl): Remove
+       extraneous parentheses.
+
+2012-11-26  Yao Qi  <yao@codesourcery.com>
+
        * remote.c (remote_start_remote): Typo fix.
 
 2012-11-23  David S. Miller  <davem@davemloft.net>
index c3d2383..b40b8fa 100644 (file)
@@ -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);