OSDN Git Service

libgo: Update to weekly.2012-03-27 aka go1 release.
[pf3gnuchains/gcc-fork.git] / libgo / go / os / types.go
index 01dddf5..0c95c9c 100644 (file)
@@ -58,7 +58,7 @@ const (
 
 func (m FileMode) String() string {
        const str = "dalTLDpSugct"
-       var buf [20]byte
+       var buf [32]byte // Mode is uint32.
        w := 0
        for i, c := range str {
                if m&(1<<uint(32-1-i)) != 0 {