From 637e7c56ac92193351ae8ce02c1be0dd8150fe86 Mon Sep 17 00:00:00 2001 From: Fred Fish Date: Wed, 13 Nov 1996 00:28:25 +0000 Subject: (Fix from Jim Wilson) * c-typeprint.c (cp_type_print_method_args): Pass -1 for show in recursive call to type_print. --- gdb/c-typeprint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb') diff --git a/gdb/c-typeprint.c b/gdb/c-typeprint.c index a7a5341..03665a2 100644 --- a/gdb/c-typeprint.c +++ b/gdb/c-typeprint.c @@ -165,7 +165,7 @@ cp_type_print_method_args (args, prefix, varstring, staticp, stream) i = !staticp; /* skip the class variable */ while (1) { - type_print (args[i++], "", stream, 0); + type_print (args[i++], "", stream, -1); if (!args[i]) { fprintf_filtered (stream, " ..."); -- cgit v1.1