From 918afd9491bd07aed10bc364012683fc52c734bb Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Fri, 8 May 2009 15:21:41 -0700 Subject: move things out of sys into os and runtime R=r OCL=28569 CL=28573 --- src/lib/http/triv.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/http') diff --git a/src/lib/http/triv.go b/src/lib/http/triv.go index d2e074d73d..f8b59ebeab 100644 --- a/src/lib/http/triv.go +++ b/src/lib/http/triv.go @@ -74,7 +74,7 @@ func FlagServer(c *http.Conn, req *http.Request) { // simple argument server func ArgServer(c *http.Conn, req *http.Request) { - for i, s := range sys.Args { + for i, s := range os.Args { fmt.Fprint(c, s, " "); } } -- cgit v1.3-5-g9baa