1
0
mirror of https://github.com/golang/go synced 2024-10-03 03:01:21 -06:00

6l, 8l: add missing space in error message

R=golang-dev
CC=golang-dev, rsc
https://golang.org/cl/5374085
This commit is contained in:
Lucio De Re 2011-11-14 15:59:27 -05:00 committed by Russ Cox
parent 1df62ca638
commit 11fe7cd6e3
2 changed files with 2 additions and 2 deletions

View File

@ -462,7 +462,7 @@ loop:
sig = 1729;
if(sig != 0){
if(s->sig != 0 && s->sig != sig)
diag("incompatible type signatures"
diag("incompatible type signatures "
"%ux(%s) and %ux(%s) for %s",
s->sig, s->file, sig, pn, s->name);
s->sig = sig;

View File

@ -480,7 +480,7 @@ loop:
sig = 1729;
if(sig != 0){
if(s->sig != 0 && s->sig != sig)
diag("incompatible type signatures"
diag("incompatible type signatures "
"%ux(%s) and %ux(%s) for %s",
s->sig, s->file, sig, pn, s->name);
s->sig = sig;