diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-06-14 08:26:57 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-06-14 08:26:57 +0000 |
commit | 25b524e8361ae202a314ea75c2d943a1988318f8 (patch) | |
tree | 5fb895d68bb0edd62cec89e08cd804572cee3eb4 /gdb/language.c | |
parent | edee3f9217248a6c6b1bcedafafafd11afb704d8 (diff) | |
download | gdb-25b524e8361ae202a314ea75c2d943a1988318f8.zip gdb-25b524e8361ae202a314ea75c2d943a1988318f8.tar.gz gdb-25b524e8361ae202a314ea75c2d943a1988318f8.tar.bz2 |
gdb/
* ada-lang.h (ada_print_type): Make varstring const.
* ada-typeprint.c (print_func_type): Make name const.
(ada_print_type): Make varstring const.
* c-lang.h (c_print_type): Make varstring const.
* c-typeprint.c (c_print_type): Likewise.
* f-lang.h (f_print_type): Likewise.
* f-typeprint.c (f_print_type): Likewise.
* jv-lang.h (java_print_type): Likewise.
* jv-typeprint.c (java_print_type): Likewise.
* language.c (unk_lang_print_type): Likewise.
* language.h (struct language_defn) <la_print_type>: Likewise.
* m2-lang.h (m2_print_type): Likewise.
* m2-typeprint.c (m2_print_type): Likewise.
* p-lang.h (pascal_print_type): Likewise.
* p-typeprint.c (pascal_print_type): Likewise.
Diffstat (limited to 'gdb/language.c')
-rw-r--r-- | gdb/language.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/language.c b/gdb/language.c index 90bb228..3ce08b5 100644 --- a/gdb/language.c +++ b/gdb/language.c @@ -64,7 +64,7 @@ static void unk_lang_emit_char (int c, struct type *type, static void unk_lang_printchar (int c, struct type *type, struct ui_file *stream); -static void unk_lang_print_type (struct type *, char *, struct ui_file *, +static void unk_lang_print_type (struct type *, const char *, struct ui_file *, int, int); static int unk_lang_value_print (struct value *, struct ui_file *, @@ -1097,8 +1097,8 @@ unk_lang_printstr (struct ui_file *stream, struct type *type, } static void -unk_lang_print_type (struct type *type, char *varstring, struct ui_file *stream, - int show, int level) +unk_lang_print_type (struct type *type, const char *varstring, + struct ui_file *stream, int show, int level) { error (_("internal error - unimplemented function unk_lang_print_type called.")); } |