Commit c19468d8 authored by Russ Cox's avatar Russ Cox

comment nit

R=r
DELTA=2  (0 added, 2 deleted, 0 changed)
OCL=25081
CL=25084
parent eb3823a4
......@@ -45,8 +45,6 @@ type ReadWriteClose interface {
}
// Convert a string to an array of bytes for easy marshaling.
// Could fill with syscall.StringToBytes but it adds an unnecessary \000
// so the length would be wrong.
func StringBytes(s string) []byte {
b := make([]byte, len(s));
for i := 0; i < len(s); i++ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment