1
0
mirror of https://github.com/golang/go synced 2024-11-26 13:48:05 -07:00

remove ( ) around mismatch type prints,

so that they don't look like functions.

R=ken
OCL=16244
CL=16244
This commit is contained in:
Russ Cox 2008-09-30 15:38:41 -07:00
parent 387c1bc31e
commit 8dc08788ef

View 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);
}
/*