From bc96c5b52e967bd59d85567d2e3ea57ef03eee98 Mon Sep 17 00:00:00 2001 From: Pierre Muller Date: Fri, 13 Apr 2012 12:47:18 +0000 Subject: [PATCH] * p-typeprint.c (pascal_type_print_method_args): Fix display of parameter of methods. --- gdb/ChangeLog | 5 +++++ gdb/p-typeprint.c | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f847ad6880d..dcc04763d9f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2012-04-13 Pierre Muller + + * p-typeprint.c (pascal_type_print_method_args): + Fix display of parameter of methods. + 2012-03-20 Pedro Alves * remote.c (remote_start_remote): Clear `rs->starting_up' on early diff --git a/gdb/p-typeprint.c b/gdb/p-typeprint.c index 7bcacdf1616..dae56d3a047 100644 --- a/gdb/p-typeprint.c +++ b/gdb/p-typeprint.c @@ -183,8 +183,7 @@ pascal_type_print_method_args (const char *physname, const char *methodname, physname += len; for (j = 0; j < i; ++j) - fputc_filtered (physname[i], stream); - fputs_filtered (physname, stream); + fputc_filtered (physname[j], stream); physname += i; if (physname[0] != 0) -- 2.47.3