summaryrefslogtreecommitdiff
path: root/change.go
diff options
context:
space:
mode:
Diffstat (limited to 'change.go')
-rw-r--r--change.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/change.go b/change.go
index 669f55d..58558b1 100644
--- a/change.go
+++ b/change.go
@@ -45,7 +45,7 @@ func convertToString(x any) string {
case string:
return x.(string)
case int:
- return fmt.Sprintf("%d", x.(int64))
+ return fmt.Sprintf("%d", x.(int))
case uint:
return fmt.Sprintf("%d", x.(uint))
case bool: