diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-01-29 00:11:12 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-01-29 00:11:12 +0000 |
commit | c578e401e100b25c1e096e7b54c3625e5f6a2877 (patch) | |
tree | b365971327110bc1567f3fd2e4fc4e137c530ffd /gdb/p-lang.c | |
parent | b1734768ced5581afd1846c53f1dc0dbc62ba74f (diff) | |
download | gdb-c578e401e100b25c1e096e7b54c3625e5f6a2877.tar.gz |
2005-01-28 Andrew Cagney <cagney@gnu.org>
* language.h (struct language_defn): Make la_printstr's buffer
parameter a const bfd_byte.
* p-lang.h (pascal_printstr): Update function to match.
* ada-valprint.c (ada_printstr): Update function to match.
* scm-lang.c (scm_printstr): Update function to match.
* p-lang.c (pascal_printstr): Update function to match.
* ada-lang.h (ada_printstr): Update function to match.
* m2-lang.c (m2_printstr): Update function to match.
* objc-lang.c (objc_printstr): Update function to match.
* c-lang.h (c_printstr): Update function to match.
* f-lang.c (f_printstr): Update function to match.
* c-lang.c (c_printstr): Update function to match.
* language.c (unk_lang_printstr): Update function to match.
Diffstat (limited to 'gdb/p-lang.c')
-rw-r--r-- | gdb/p-lang.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gdb/p-lang.c b/gdb/p-lang.c index f7c49df7d77..8c0b6e5ac1b 100644 --- a/gdb/p-lang.c +++ b/gdb/p-lang.c @@ -1,5 +1,7 @@ /* Pascal language support routines for GDB, the GNU debugger. - Copyright 2000, 2002, 2003, 2004 Free Software Foundation, Inc. + + Copyright 2000, 2002, 2003, 2004, 2005 Free Software Foundation, + Inc. This file is part of GDB. @@ -155,8 +157,8 @@ pascal_printchar (int c, struct ui_file *stream) had to stop before printing LENGTH characters, or if FORCE_ELLIPSES. */ void -pascal_printstr (struct ui_file *stream, char *string, unsigned int length, - int width, int force_ellipses) +pascal_printstr (struct ui_file *stream, const bfd_byte *string, + unsigned int length, int width, int force_ellipses) { unsigned int i; unsigned int things_printed = 0; |