diff options
author | Pedro Alves <palves@redhat.com> | 2013-04-19 15:10:53 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2013-04-19 15:10:53 +0000 |
commit | 001f13d822104158239fe26a05d9154d967cbe56 (patch) | |
tree | 5ac633c07604f6fc9eb615d997bb626d672b8713 /gdb/linux-tdep.c | |
parent | 948f8e3d72fa7047c43a952017ad4a7c9d55ab0d (diff) | |
download | gdb-001f13d822104158239fe26a05d9154d967cbe56.zip gdb-001f13d822104158239fe26a05d9154d967cbe56.tar.gz gdb-001f13d822104158239fe26a05d9154d967cbe56.tar.bz2 |
-Wpointer-sign: gdb_byte -> char.
This is sort of the opposite of the previous patch. Places that
manipulate strings or interfaces that return strings are changed to
use char* instead of gdb_byte*.
gdb/
2013-04-19 Pedro Alves <palves@redhat.com>
* avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'. Use
it to get a string view of the byte buffer.
* i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
type to gdb_byte *. Adjust.
* linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
Change local to char *.
* solib-darwin.c (find_program_interpreter): Change return type to
char *. Adjust.
(darwin_solib_get_all_image_info_addr_at_init): Adjust.
* solib-dsbt.c (enable_break2): Change local 'buf' to char *.
* solib-frv.c (enable_break2): Change local 'buf' to char *.
* solib-spu.c (spu_current_sos): Add gdb_byte * cast.
* solib-svr4.c (find_program_interpreter): Change return type to
char *. Adjust.
(enable_break): Change local 'interp_name' to char *.
* spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
* spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
(spu_pseudo_register_write_spu): Use char for string buffer.
Adjust.
(info_spu_event_command, info_spu_signal_command): Add casts to
'char *'.
Diffstat (limited to 'gdb/linux-tdep.c')
-rw-r--r-- | gdb/linux-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/linux-tdep.c b/gdb/linux-tdep.c index 9def108..9623d19 100644 --- a/gdb/linux-tdep.c +++ b/gdb/linux-tdep.c @@ -261,7 +261,7 @@ linux_info_proc (struct gdbarch *gdbarch, char *args, int status_f = (what == IP_STATUS || what == IP_ALL); int stat_f = (what == IP_STAT || what == IP_ALL); char filename[100]; - gdb_byte *data; + char *data; int target_errno; if (args && isdigit (args[0])) @@ -676,7 +676,7 @@ linux_find_memory_regions_full (struct gdbarch *gdbarch, void *obfd) { char mapsfilename[100]; - gdb_byte *data; + char *data; /* We need to know the real target PID to access /proc. */ if (current_inferior ()->fake_pid_p) |