aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYasuhiro Matsumoto <mattn.jp@gmail.com>2011-06-24 15:00:59 +1000
committerAlex Brainman <alex.brainman@gmail.com>2011-06-24 15:00:59 +1000
commit8ab2c98972eeec9ed1da79360f69b9d97e9bcc5f (patch)
tree379bb85bcb60ac9548b490635f2f2a737af1bd52
parent89873e60e27cbe015331ad2dab80317afd7f7e2e (diff)
downloadgo-8ab2c98972eeec9ed1da79360f69b9d97e9bcc5f.tar.gz
go-8ab2c98972eeec9ed1da79360f69b9d97e9bcc5f.zip
os: fixed PathListSeparator to ';' for windows.
Fixed issue 1992 R=golang-dev, alex.brainman CC=golang-dev https://golang.org/cl/4661047
-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 8740a9e613..61f2ca59ff 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.