diff options
Diffstat (limited to 'libgo/go/encoding/base32/base32.go')
-rw-r--r-- | libgo/go/encoding/base32/base32.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/encoding/base32/base32.go b/libgo/go/encoding/base32/base32.go index 494c760d87d..c75c7c19d15 100644 --- a/libgo/go/encoding/base32/base32.go +++ b/libgo/go/encoding/base32/base32.go @@ -216,7 +216,7 @@ func (enc *Encoding) EncodedLen(n int) int { return (n + 4) / 5 * 8 } type CorruptInputError int64 func (e CorruptInputError) Error() string { - return "illegal base32 data at input byte " + strconv.Itoa64(int64(e)) + return "illegal base32 data at input byte " + strconv.FormatInt(int64(e), 10) } // decode is like Decode but returns an additional 'end' value, which |