From aac7223f626eccb234973d0d4ed75f9865c11724 Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Fri, 27 May 2005 04:39:33 +0000 Subject: 2005-05-27 Andrew Cagney * 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. --- gdb/jv-valprint.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/jv-valprint.c') diff --git a/gdb/jv-valprint.c b/gdb/jv-valprint.c index 41f6c561a6f..7e24e566cbb 100644 --- a/gdb/jv-valprint.c +++ b/gdb/jv-valprint.c @@ -72,7 +72,7 @@ java_value_print (struct value *val, struct ui_file *stream, int format, if (TYPE_CODE (type) == TYPE_CODE_STRUCT && name != NULL && (i = strlen (name), name[i - 1] == ']')) { - char buf4[4]; + gdb_byte buf4[4]; long length; unsigned int things_printed = 0; int reps; @@ -93,7 +93,7 @@ java_value_print (struct value *val, struct ui_file *stream, int format, while (i < length && things_printed < print_max) { - char *buf; + gdb_byte *buf; buf = alloca (TARGET_PTR_BIT / HOST_CHAR_BIT); fputs_filtered (", ", stream); -- cgit v1.2.1