summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2013-04-19 15:33:58 +0000
committerPedro Alves <palves@redhat.com>2013-04-19 15:33:58 +0000
commit745eb4fdb2c0c7e68cdb9672412ad8ceca7347f2 (patch)
tree1ad8602c3dfe0bde5f3bc4625818688cf116ae47
parentdb5be46fdcf41109a017cbdaeeac5acc9a1f78f3 (diff)
downloadbinutils-gdb-745eb4fdb2c0c7e68cdb9672412ad8ceca7347f2.tar.gz
-Wpointer-sign: xcoffread.c.
../../src/gdb/xcoffread.c: In function ‘xcoff_initial_scan’: ../../src/gdb/xcoffread.c:2982:17: error: pointer targets in assignment differ in signedness [-Werror=pointer-sign] 'debugsec' is a 'bfd_byte *', holding the result of a bfd_get_full_section_contents. 'info->debugsec' holds the same contents throughout the whole xcoff read, and everywhere it's used to read symbol names. Simply adding a cast feels appropriate. gdb/ 2013-04-19 Pedro Alves <palves@redhat.com> * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/xcoffread.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 47a8ac2c188..a28fdad66c2 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
2013-04-19 Pedro Alves <palves@redhat.com>
+ * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
+
+2013-04-19 Pedro Alves <palves@redhat.com>
+
* coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
2013-04-19 Pedro Alves <palves@redhat.com>
diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c
index 60135514ac4..2b5f9b77b10 100644
--- a/gdb/xcoffread.c
+++ b/gdb/xcoffread.c
@@ -2979,7 +2979,7 @@ xcoff_initial_scan (struct objfile *objfile, int symfile_flags)
}
}
}
- info->debugsec = debugsec;
+ info->debugsec = (char *) debugsec;
}
}