1
0
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:
Tim Voronov 2020-08-25 01:00:07 -04:00
parent 21454b0a91
commit e283722d37

View File

@ -33,5 +33,5 @@ func ParamFloat(param float64) string {
}
func ParamInt(param int64) string {
return strconv.FormatInt(param, 64)
return strconv.FormatInt(param, 10)
}