From 7f8076204b091192cb2050f5aa80cdf4c45a7926 Mon Sep 17 00:00:00 2001 From: Pierre Muller Date: Fri, 16 Mar 2012 11:10:04 +0000 Subject: * p-typeprint.c (pascal_type_print_method_args): Fix display of parameter of methods. --- gdb/p-typeprint.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gdb/p-typeprint.c') 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) -- cgit v1.2.1