diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-01-29 00:52:02 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-01-29 00:52:02 +0000 |
commit | 5bcca90b9eb90535e8112a25775bcc18958dd2eb (patch) | |
tree | 41dfea64090494c7e678d0bb375cff55e052fdea /gdb/p-valprint.c | |
parent | ce27fb254cf9f800fb7f1a953eb8fa47522b9788 (diff) | |
download | binutils-gdb-5bcca90b9eb90535e8112a25775bcc18958dd2eb.tar.gz |
2005-01-28 Andrew Cagney <cagney@gnu.org>
* p-lang.h (pascal_object_print_class_member)
(pascal_object_print_class_method): Make buffer a const bfd_byte.
* p-valprint.c (pascal_object_print_class_method)
(pascal_object_print_class_method): Ditto.
Diffstat (limited to 'gdb/p-valprint.c')
-rw-r--r-- | gdb/p-valprint.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/p-valprint.c b/gdb/p-valprint.c index e320c19d981..21d21104338 100644 --- a/gdb/p-valprint.c +++ b/gdb/p-valprint.c @@ -1,6 +1,6 @@ /* Support for printing Pascal values for GDB, the GNU debugger. - Copyright 2000, 2001, 2003 - Free Software Foundation, Inc. + + Copyright 2000, 2001, 2003, 2005 Free Software Foundation, Inc. This file is part of GDB. @@ -591,7 +591,7 @@ static void int, int, enum val_prettyprint, struct type **); void -pascal_object_print_class_method (char *valaddr, struct type *type, +pascal_object_print_class_method (const bfd_byte *valaddr, struct type *type, struct ui_file *stream) { struct type *domain; @@ -1045,7 +1045,7 @@ pascal_object_print_static_field (struct type *type, struct value *val, } void -pascal_object_print_class_member (char *valaddr, struct type *domain, +pascal_object_print_class_member (const bfd_byte *valaddr, struct type *domain, struct ui_file *stream, char *prefix) { |