diff options
| author | Russ Cox <rsc@golang.org> | 2009-05-08 15:21:41 -0700 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2009-05-08 15:21:41 -0700 |
| commit | 918afd9491bd07aed10bc364012683fc52c734bb (patch) | |
| tree | 5b8c80c41b4110b57cef1a0945350c2caf7557e2 /src/lib/http | |
| parent | c367d1b789b0aed59e871aee588d776998a8f479 (diff) | |
| download | go-918afd9491bd07aed10bc364012683fc52c734bb.tar.xz | |
move things out of sys into os and runtime
R=r
OCL=28569
CL=28573
Diffstat (limited to 'src/lib/http')
| -rw-r--r-- | src/lib/http/triv.go | 2 |
1 files changed, 1 insertions, 1 deletions
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, " "); } } |
