mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +02:00
Fixed wrong base for int formatter
This commit is contained in:
parent
21454b0a91
commit
e283722d37
@ -33,5 +33,5 @@ func ParamFloat(param float64) string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func ParamInt(param int64) string {
|
func ParamInt(param int64) string {
|
||||||
return strconv.FormatInt(param, 64)
|
return strconv.FormatInt(param, 10)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user