1
0
mirror of https://github.com/golang/go synced 2024-11-24 22:00:09 -07:00
Fixes #69.

R=r
https://golang.org/cl/152082
This commit is contained in:
Russ Cox 2009-11-11 14:52:38 -08:00
parent f07a9e43e8
commit ef7c370a20

View File

@ -1467,7 +1467,7 @@ func (p *ByteSlice) Write(data []byte) (n int, err os.Error) {
slice := *p; slice := *p;
// Again as above. // Again as above.
*p = slice; *p = slice;
return len(data), nil) return len(data), nil;
} }
</pre> </pre>
<p> <p>