From 0c4f667cfe5118bf3a2690502a9a40ff3309abed Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Mon, 6 May 2013 12:55:52 +0000 Subject: 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/sol-thread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/sol-thread.c') diff --git a/gdb/sol-thread.c b/gdb/sol-thread.c index 969bfaf..f5ea3be 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); -- cgit v1.1