This is the mail archive of the
archer@sourceware.org
mailing list for the Archer project.
[expr-cumulative] Fix return type qualifier
- From: Jan Kratochvil <jan dot kratochvil at redhat dot com>
- To: Sami Wagiaalla <swagiaal at redhat dot com>
- Cc: archer at sourceware dot org
- Date: Fri, 23 Oct 2009 21:46:17 +0200
- Subject: [expr-cumulative] Fix return type qualifier
Hi Sami,
OK to check-in?
gcc-4.1.2-46.el5_4.1.x86_64
errors due to -Werror on:
gdb/dwarf2read.c:3642: warning: type qualifiers ignored on function return type
from code of
e7c98bbe4bea801d53222c3337cbae3f3944547c
Thanks,
Jan
* dwarf2read.c (dwarf2_read_decl_line): Fix excessive const return
qualifier. Fix GNU formatting style.
--- a/gdb/dwarf2read.c
+++ b/gdb/dwarf2read.c
@@ -3357,14 +3357,17 @@ dwarf2_full_name (struct die_info *die, struct dwarf2_cu *cu)
return name;
}
-/* read the given die's decl_line number. Return -1 if in case of an error */
-static const int dwarf2_read_decl_line (struct die_info *die, struct dwarf2_cu *cu){
+/* Read the given DIE's DW_AT_decl_line number. Return -1 if in case of an
+ error. */
+
+static int
+dwarf2_read_decl_line (struct die_info *die, struct dwarf2_cu *cu)
+{
struct attribute *line_attr;
line_attr = dwarf2_attr (die, DW_AT_decl_line, cu);
- if (line_attr){
- return DW_UNSND (line_attr);
- }
+ if (line_attr)
+ return DW_UNSND (line_attr);
return -1;
}