Commit 11fe7cd6 authored by Lucio De Re's avatar Lucio De Re Committed by Russ Cox

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

R=golang-dev
CC=golang-dev, rsc
https://golang.org/cl/5374085
parent 1df62ca6
......@@ -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;
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment