Commit 535dcf77 authored by Russ Cox's avatar Russ Cox

minor tweaks

R=r
DELTA=9  (2 added, 5 deleted, 2 changed)
OCL=24107
CL=24152
parent e73acc1b
...@@ -178,13 +178,8 @@ throw: ...@@ -178,13 +178,8 @@ throw:
sname = st[nt].name; sname = st[nt].name;
if(sname == nil) { if(sname == nil) {
if(!canfail) { if(!canfail) {
prints("cannot convert type "); printf("cannot convert type %s to interface %s: missing method %s\n",
prints((int8*)st[0].name); st[0].name, si[0].name, iname);
prints(" to interface ");
prints((int8*)si[0].name);
prints(": missing method ");
prints((int8*)iname);
prints("\n");
if(iface_debug) { if(iface_debug) {
prints("interface"); prints("interface");
printsigi(si); printsigi(si);
......
...@@ -12,6 +12,8 @@ findnull(byte *s) ...@@ -12,6 +12,8 @@ findnull(byte *s)
{ {
int32 l; int32 l;
if(s == nil)
return 0;
for(l=0; s[l]!=0; l++) for(l=0; s[l]!=0; l++)
; ;
return l; return l;
......
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