]> Cypherpunks repositories - gostls13.git/commitdiff
remove ( ) around mismatch type prints,
authorRuss Cox <rsc@golang.org>
Tue, 30 Sep 2008 22:38:41 +0000 (15:38 -0700)
committerRuss Cox <rsc@golang.org>
Tue, 30 Sep 2008 22:38:41 +0000 (15:38 -0700)
so that they don't look like functions.

R=ken
OCL=16244
CL=16244

src/cmd/gc/subr.c

index c467e7e7481b2b34ee4572fb45045da9138cfa4d..f659c17c2e303d6cfbb58aa0adab0f94863565eb 100644 (file)
@@ -1845,9 +1845,9 @@ loop:
 
        yyerror("illegal types for operand: %O", o);
        if(tl != T)
-               print(" (%lT)\n", tl);
+               print(" %lT\n", tl);
        if(tr != T)
-               print(" (%lT)\n", tr);
+               print(" %lT\n", tr);
 }
 
 /*