From: Fred Fish Date: Wed, 13 Nov 1996 00:28:25 +0000 (+0000) Subject: (Fix from Jim Wilson) X-Git-Tag: gdb-4_18-branchpoint~7191 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=637e7c56ac92193351ae8ce02c1be0dd8150fe86;p=thirdparty%2Fbinutils-gdb.git (Fix from Jim Wilson) * c-typeprint.c (cp_type_print_method_args): Pass -1 for show in recursive call to type_print. --- diff --git a/gdb/c-typeprint.c b/gdb/c-typeprint.c index a7a5341c177..03665a2da18 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, " ...");