diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-05-26 20:49:03 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-05-26 20:49:03 +0000 |
commit | 577cf3491e89db5b78bbf4d11d03816ba96a01a5 (patch) | |
tree | 17becdbd40fbeaf60dba063cfdf761eefa76e8c2 /gdb/breakpoint.c | |
parent | f457bf087e91a4235d4b473b55e68d162640f9e5 (diff) | |
download | gdb-577cf3491e89db5b78bbf4d11d03816ba96a01a5.tar.gz |
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/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 7e329434aad..76c73d7b9c3 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -4441,7 +4441,8 @@ re_enable_breakpoints_in_shlibs (void) { if (b->enable_state == bp_shlib_disabled) { - char buf[1], *lib; + gdb_byte buf[1]; + char *lib; /* Do not reenable the breakpoint if the shared library is still not mapped in. */ |