From 0c4f667cfe5118bf3a2690502a9a40ff3309abed Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Mon, 6 May 2013 12:55:52 +0000 Subject: [PATCH] Fix -Wpointer-sign warning in sol-thread.c gdb/ChangeLog: * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls to target_write_memory and target_read_memory. --- gdb/ChangeLog | 5 +++++ gdb/sol-thread.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7473b08e4ee..14cce7909a7 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2013-05-06 Joel Brobecker + + * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls + to target_write_memory and target_read_memory. + 2013-05-06 Joel Brobecker * darwin-nat.c (darwin_setup_fake_stop_event): New function. diff --git a/gdb/sol-thread.c b/gdb/sol-thread.c index 969bfafe486..f5ea3bebcfb 100644 --- a/gdb/sol-thread.c +++ b/gdb/sol-thread.c @@ -807,9 +807,9 @@ rw_common (int dowrite, const struct ps_prochandle *ph, gdb_ps_addr_t addr, #endif if (dowrite) - ret = target_write_memory (addr, buf, size); + ret = target_write_memory (addr, (gdb_byte *) buf, size); else - ret = target_read_memory (addr, buf, size); + ret = target_read_memory (addr, (gdb_byte *) buf, size); do_cleanups (old_chain); -- 2.30.2