diff options
| author | Russ Cox <rsc@golang.org> | 2011-12-05 15:48:46 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2011-12-05 15:48:46 -0500 |
| commit | 2666b815a33edf3a9a1b7c335f9baabf27179d9f (patch) | |
| tree | 830dce8d301c691ca77bf5649d1050203d982427 /src/pkg/encoding/git85/git.go | |
| parent | efbeaedb64e426f6874468ea4095d509622514df (diff) | |
| download | go-2666b815a33edf3a9a1b7c335f9baabf27179d9f.tar.xz | |
use new strconv API
All but 3 cases (in gcimporter.go and hixie.go)
are automatic conversions using gofix.
No attempt is made to use the new Append functions
even though there are definitely opportunities.
R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/5447069
Diffstat (limited to 'src/pkg/encoding/git85/git.go')
| -rw-r--r-- | src/pkg/encoding/git85/git.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/encoding/git85/git.go b/src/pkg/encoding/git85/git.go index b6ad6e2dd3..d383213ce8 100644 --- a/src/pkg/encoding/git85/git.go +++ b/src/pkg/encoding/git85/git.go @@ -15,7 +15,7 @@ import ( type CorruptInputError int64 func (e CorruptInputError) Error() string { - return "illegal git85 data at input byte " + strconv.Itoa64(int64(e)) + return "illegal git85 data at input byte " + strconv.FormatInt(int64(e), 10) } const encode = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!#$%&()*+-;<=>?@^_`{|}~" |
