From: Russ Cox Date: Wed, 2 Sep 2009 16:03:42 +0000 (-0700) Subject: two gob nits found with stricter 6g X-Git-Tag: weekly.2009-11-06~667 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=58a0d6cebc8e48401a18deb42389d023a3577e7b;p=gostls13.git two gob nits found with stricter 6g (6g had a few pretty major bugs where it was more lax than it should have been when checking when things satisfied interfaces; i fixed them and this turned up.) R=r DELTA=2 (0 added, 0 deleted, 2 changed) OCL=34243 CL=34248 --- diff --git a/src/pkg/gob/type.go b/src/pkg/gob/type.go index ff3cd6bc5b..8eb384ac7a 100644 --- a/src/pkg/gob/type.go +++ b/src/pkg/gob/type.go @@ -96,7 +96,7 @@ func (t *commonType) String() string { return t.name } -func (t *commonType) safeString(seen map[uint32] bool) string { +func (t *commonType) safeString(seen map[typeId] bool) string { return t.name } @@ -146,7 +146,7 @@ func (a *arrayType) safeString(seen map[typeId] bool) string { } func (a *arrayType) String() string { - return a.safeString(make(map[uint32] bool)) + return a.safeString(make(map[typeId] bool)) } // Slice type