]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
(Fix from Jim Wilson)
authorFred Fish <fnf@specifix.com>
Wed, 13 Nov 1996 00:28:25 +0000 (00:28 +0000)
committerFred Fish <fnf@specifix.com>
Wed, 13 Nov 1996 00:28:25 +0000 (00:28 +0000)
* c-typeprint.c (cp_type_print_method_args): Pass -1 for show in
recursive call to type_print.

gdb/c-typeprint.c

index a7a5341c177264d7e8e6d9c20d483b9504cbe51f..03665a2da18944bcceb7cfc9311a6a5346a41c1c 100644 (file)
@@ -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, " ...");