Commit 11f1f82b authored by Andrew Gerrand's avatar Andrew Gerrand

[release-branch.go1.2] cmd/yacc: fix stderr on Windows.

««« CL 15330043 / 69bf31787310
cmd/yacc: fix stderr on Windows.
Fixes #6620.

R=golang-dev, dave, r
CC=golang-dev
https://golang.org/cl/15330043
»»»

R=golang-dev
CC=golang-dev
https://golang.org/cl/20550043
parent e3597e39
......@@ -357,7 +357,7 @@ func main() {
func setup() {
var j, ty int
stderr = bufio.NewWriter(os.NewFile(2, "stderr"))
stderr = bufio.NewWriter(os.Stderr)
foutput = nil
flag.Parse()
......
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