diff options
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.")); } |