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
1 changed files with 1 additions and 1 deletions

View File

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