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.
This commit is contained in:
parent
b4d165ff8c
commit
c68a6671d7
12 changed files with 44 additions and 20 deletions
|
@ -216,7 +216,7 @@ get_java_utf8_name (struct obstack *obstack, struct value *name)
|
|||
+ TYPE_LENGTH (value_type (temp));
|
||||
chrs = obstack_alloc (obstack, name_length + 1);
|
||||
chrs[name_length] = '\0';
|
||||
read_memory (data_addr, chrs, name_length);
|
||||
read_memory (data_addr, (gdb_byte *) chrs, name_length);
|
||||
return chrs;
|
||||
}
|
||||
|
||||
|
@ -883,7 +883,7 @@ evaluate_subexp_java (struct type *expect_type, struct expression *exp,
|
|||
CORE_ADDR address;
|
||||
long length, index;
|
||||
struct type *el_type;
|
||||
char buf4[4];
|
||||
gdb_byte buf4[4];
|
||||
|
||||
struct value *clas = java_class_from_object (arg1);
|
||||
struct value *temp = clas;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue