From: Russ Cox Date: Wed, 4 Feb 2009 18:37:11 +0000 (-0800) Subject: fix interface not satisifed message: X-Git-Tag: weekly.2009-11-06~2240 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=360f0aacee0a519ca0e04592c94f463fdda7800a;p=gostls13.git fix interface not satisifed message: x.go:13: T is not I - missing M() NOT x.go:13: T is not I - missing Mfunc() R=ken OCL=24316 CL=24316 --- diff --git a/src/cmd/gc/subr.c b/src/cmd/gc/subr.c index 4fdfb78bae..e37dce60ae 100644 --- a/src/cmd/gc/subr.c +++ b/src/cmd/gc/subr.c @@ -2790,7 +2790,7 @@ runifacechecks(void) r = p->src; } if(!hasiface(l, r, &m)) - yyerror("%T is not %T - missing %S%hT", + yyerror("%T is not %T - missing %S%hhT", l, r, m->sym, m->type); } lineno = lno;