Fix RandomReader

This commit is contained in:
Alexander Neumann
2016-01-17 21:27:51 +01:00
parent f53008d916
commit 109a120b39
2 changed files with 2 additions and 5 deletions

View File

@@ -90,7 +90,6 @@ type rndReader struct {
}
func (r *rndReader) Read(p []byte) (int, error) {
fmt.Printf("Read(%v)\n", len(p))
for i := range p {
p[i] = byte(r.src.Uint32())
}