diff options
Diffstat (limited to 'gdb/scm-lang.c')
-rw-r--r-- | gdb/scm-lang.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/scm-lang.c b/gdb/scm-lang.c index 345befd..e2568c8 100644 --- a/gdb/scm-lang.c +++ b/gdb/scm-lang.c @@ -43,14 +43,14 @@ static int in_eval_c (void); struct type *builtin_type_scm; void -scm_printchar (int c, struct ui_file *stream) +scm_printchar (int c, struct type *type, struct ui_file *stream) { fprintf_filtered (stream, "#\\%c", c); } static void -scm_printstr (struct ui_file *stream, const gdb_byte *string, - unsigned int length, int width, int force_ellipses, +scm_printstr (struct ui_file *stream, struct type *type, const gdb_byte *string, + unsigned int length, int force_ellipses, const struct value_print_options *options) { fprintf_filtered (stream, "\"%s\"", string); |