diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-05-27 04:39:33 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-05-27 04:39:33 +0000 |
commit | c68a6671d724482e3101ff3afc3effc928585cf9 (patch) | |
tree | 8535f58aae9fabc97a578a4340d4ff76a948e69c /gdb/scm-valprint.c | |
parent | b4d165ff8c251bc2d92962edfc86109b50399a80 (diff) | |
download | gdb-c68a6671d724482e3101ff3afc3effc928585cf9.zip gdb-c68a6671d724482e3101ff3afc3effc928585cf9.tar.gz gdb-c68a6671d724482e3101ff3afc3effc928585cf9.tar.bz2 |
2005-05-27 Andrew Cagney <cagney@gnu.org>
* jv-lang.c (get_java_utf8_name): Add cast.
(evaluate_subexp_java): Use gdb_byte for buffers.
* jv-valprint.c (java_value_print, java_value_print): Use gdb_byte
for buffers.
* scm-lang.c (scm_get_field, scm_unpack)
(scm_evaluate_string): Use gdb_byte for buffers.
(scm_lookup_name): Add cast.
* scm-valprint.c (scm_scmval_print, scm_scmval_print): Use
gdb_byte for buffers.
* tui/tui.h (tui_get_command_dimension): Make parameters unsigned.
* tui/tui.c (tui_get_command_dimension): Make parameters unsigned.
* value.h (check_field): Change "name" to a string.
* valops.c (check_field): Change "name" to a string.
* scm-lang.h (scm_parse): Use gdb_byte for buffers.
* source.c (get_current_source_symtab_and_line)
(set_current_source_symtab_and_line): Initialize all fields of sal
structures.
* cli/cli-cmds.c (list_command): Use gdb_byte for buffers.
Diffstat (limited to 'gdb/scm-valprint.c')
-rw-r--r-- | gdb/scm-valprint.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/scm-valprint.c b/gdb/scm-valprint.c index 05399aa..9e952fb 100644 --- a/gdb/scm-valprint.c +++ b/gdb/scm-valprint.c @@ -220,7 +220,7 @@ taloop: int i; int done = 0; int buf_size; - char buffer[64]; + gdb_byte buffer[64]; int truncate = print_max && len > (int) print_max; if (truncate) len = print_max; @@ -248,8 +248,8 @@ taloop: { int len = SCM_LENGTH (svalue); - char *str = (char *) alloca (len); - read_memory (SCM_CDR (svalue), str, len + 1); + char *str = alloca (len); + read_memory (SCM_CDR (svalue), (gdb_byte *) str, len + 1); /* Should handle weird characters FIXME */ str[len] = '\0'; fputs_filtered (str, stream); |