summaryrefslogtreecommitdiff
path: root/libgo/go/flag/flag.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/flag/flag.go')
-rw-r--r--libgo/go/flag/flag.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/flag/flag.go b/libgo/go/flag/flag.go
index bbbc55a2799..b166c5753ad 100644
--- a/libgo/go/flag/flag.go
+++ b/libgo/go/flag/flag.go
@@ -114,7 +114,7 @@ func newIntValue(val int, p *int) *intValue {
}
func (i *intValue) Set(s string) error {
- v, err := strconv.ParseInt(s, 0, 64)
+ v, err := strconv.ParseInt(s, 0, strconv.IntSize)
*i = intValue(v)
return err
}
@@ -150,7 +150,7 @@ func newUintValue(val uint, p *uint) *uintValue {
}
func (i *uintValue) Set(s string) error {
- v, err := strconv.ParseUint(s, 0, 64)
+ v, err := strconv.ParseUint(s, 0, strconv.IntSize)
*i = uintValue(v)
return err
}