From 077a4ce440fab9a5d7c454a6d5063752f362d3c3 Mon Sep 17 00:00:00 2001 From: qiyao Date: Mon, 26 Nov 2012 13:26:57 +0000 Subject: gdb/ 2012-11-26 Yao Qi * f-valprint.c (f77_create_arrayprint_offset_tbl): Remove extraneous parentheses. --- gdb/f-valprint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/f-valprint.c') 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); -- cgit v1.2.1