summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYasuhiro Matsumoto <mattn.jp@gmail.com>2011-06-24 15:00:59 +1000
committerYasuhiro Matsumoto <mattn.jp@gmail.com>2011-06-24 15:00:59 +1000
commit5a3ad447d597bb6f3b0daf98c4ced7862761b4bb (patch)
treee3ff6c078cefe1b3f63344ea3cf16646ca16ec1f
parent6d559935b3e6ef1b5ce475c80e3ac8a982971d51 (diff)
downloadgo-5a3ad447d597bb6f3b0daf98c4ced7862761b4bb.tar.gz
os: fixed PathListSeparator to ';' for windows.
Fixed issue 1992 R=golang-dev, alex.brainman CC=golang-dev http://codereview.appspot.com/4661047 Committer: Alex Brainman <alex.brainman@gmail.com>
-rw-r--r--src/pkg/os/path_windows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/os/path_windows.go b/src/pkg/os/path_windows.go
index 8740a9e61..61f2ca59f 100644
--- a/src/pkg/os/path_windows.go
+++ b/src/pkg/os/path_windows.go
@@ -6,7 +6,7 @@ package os
const (
PathSeparator = '\\' // OS-specific path separator
- PathListSeparator = ':' // OS-specific path list separator
+ PathListSeparator = ';' // OS-specific path list separator
)
// IsPathSeparator returns true if c is a directory separator character.