summaryrefslogtreecommitdiff
path: root/src/lib/bufio_test.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-04-06 21:14:38 -0700
committerRuss Cox <rsc@golang.org>2009-04-06 21:14:38 -0700
commit71a88a79ac75ccaca1986af7d3616563cbb2f74f (patch)
tree11b2c9abd86388bca4645ea2e395082cb069828b /src/lib/bufio_test.go
parent33580b7ee07748cc7e5a8c0d28ed6e8340a92475 (diff)
downloadgolang-71a88a79ac75ccaca1986af7d3616563cbb2f74f.tar.gz
an early 6g limitation forced the use of
string(b)[0:n] instead of the more direct string(b[0:n]). convert to the more direct form. R=r DELTA=5 (0 added, 0 deleted, 5 changed) OCL=27082 CL=27140
Diffstat (limited to 'src/lib/bufio_test.go')
-rw-r--r--src/lib/bufio_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/bufio_test.go b/src/lib/bufio_test.go
index 4afad8340..ef97bc46e 100644
--- a/src/lib/bufio_test.go
+++ b/src/lib/bufio_test.go
@@ -135,7 +135,7 @@ func readBytes(buf *BufRead) string {
nb++;
}
// BUG return string(b[0:nb]) ?
- return string(b)[0:nb]
+ return string(b[0:nb])
}
// Call Read to accumulate the text of a file