Commit 35eebcac authored by Rob Pike's avatar Rob Pike

fix typo causing infinite recursion

R=rsc
OCL=17398
CL=17398
parent 5fe4cd83
......@@ -163,7 +163,7 @@ export func atol(s string) (i int64, ok bool) {
}
export func atoi(s string) (i int, ok bool) {
ii, okok := atoi(s);
ii, okok := atol(s);
i = int32(ii);
return i, okok
}
......
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