aboutsummaryrefslogtreecommitdiff
path: root/gdb/valops.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2005-05-26 20:49:03 +0000
committerAndrew Cagney <cagney@redhat.com>2005-05-26 20:49:03 +0000
commit47b667dea5dd1f1c4fc7a1304163c254ffa16161 (patch)
tree9fcda8613cafb8fe628d6f552036be024d6422c5 /gdb/valops.c
parentffed450932b97750232cc99eb2f3a4cba06afc9c (diff)
downloadfsf-binutils-gdb-47b667dea5dd1f1c4fc7a1304163c254ffa16161.zip
fsf-binutils-gdb-47b667dea5dd1f1c4fc7a1304163c254ffa16161.tar.gz
fsf-binutils-gdb-47b667dea5dd1f1c4fc7a1304163c254ffa16161.tar.bz2
2005-05-26 Andrew Cagney <cagney@gnu.org>
* command.h (add_setshow_integer_cmd): Make VAR an integer. * cli/cli-decode.c (add_setshow_integer_cmd): Update to match. * valops.c (value_string): Add a cast. * eval.c (evaluate_subexp_standard): Use gdb_byte for byte buffers. * breakpoint.c (re_enable_breakpoints_in_shlibs): Use gdb_byte for byte buffers. * target.h (struct target_ops): For to_insert_hw_breakpoint and to_remove_hw_breakpoint use gdb_byte for byte buffer parameters. * breakpoint.h (struct bp_location): Make shadow_contents a gdb_byte buffer. * cli/cli-setshow.c (do_setshow_command): Fix cast. * cli/cli-dump.c (restore_section_callback) (restore_binary_file): Use gdb_byte for byte buffers. * proc-service.c (ps_ptwrite, ps_ptread, ps_pdwrite): Fix casts. (ps_xfer_memory): Use gdb_byte for byte buffers. * tracepoint.c (mem2hex): Use gdb_byte for byte buffers, and char for string buffers. * ser-tcp.c (net_open): Make len a socklen_t.
Diffstat (limited to 'gdb/valops.c')
-rw-r--r--gdb/valops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/valops.c b/gdb/valops.c
index 57c8b78..14b845e 100644
--- a/gdb/valops.c
+++ b/gdb/valops.c
@@ -1039,7 +1039,7 @@ value_string (char *ptr, int len)
copy LEN bytes from PTR in gdb to that address in the inferior. */
addr = allocate_space_in_inferior (len);
- write_memory (addr, ptr, len);
+ write_memory (addr, (gdb_byte *) ptr, len);
val = value_at_lazy (stringtype, addr);
return (val);