Skip to content

Commit

Permalink
Merge branch 'release/v1.0.25'
Browse files Browse the repository at this point in the history
  • Loading branch information
SheltonZhu committed May 15, 2024
2 parents 24a3512 + 452a214 commit 7c2b7d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/driver/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func (v *IntString) UnmarshalJSON(b []byte) (err error) {
} else {
var i int64
if err = json.Unmarshal(b, &i); err == nil {
s = strconv.Itoa(i)
s = strconv.FormatInt(i, 10)
}
}
if err == nil {
Expand Down

0 comments on commit 7c2b7d9

Please sign in to comment.