From d0e7e15ad6672ebf5486abaa42178b566326a864 Mon Sep 17 00:00:00 2001 From: Pierre Muller Date: Fri, 16 Mar 2012 11:10:04 +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 ebe8683b23b..3d0f83756d5 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2012-03-16 Pierre Muller + + * p-typeprint.c (pascal_type_print_method_args): + Fix display of parameter of methods. + 2012-03-16 Pierre Muller * amd64-windows-nat.c (_initialize_amd64_windows_nat): diff --git a/gdb/p-typeprint.c b/gdb/p-typeprint.c index ab82d900391..bc24495c149 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.30.2