summaryrefslogtreecommitdiff
path: root/libgo/go/path/filepath/path_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/path/filepath/path_windows.go')
-rw-r--r--libgo/go/path/filepath/path_windows.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/libgo/go/path/filepath/path_windows.go b/libgo/go/path/filepath/path_windows.go
index 1d1d23bfe7c..3dcd0302195 100644
--- a/libgo/go/path/filepath/path_windows.go
+++ b/libgo/go/path/filepath/path_windows.go
@@ -35,9 +35,7 @@ func VolumeName(path string) (v string) {
}
// with drive letter
c := path[0]
- if path[1] == ':' &&
- ('0' <= c && c <= '9' || 'a' <= c && c <= 'z' ||
- 'A' <= c && c <= 'Z') {
+ if path[1] == ':' && ('a' <= c && c <= 'z' || 'A' <= c && c <= 'Z') {
return path[:2]
}
// is it UNC