summaryrefslogtreecommitdiff
path: root/change.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-25 16:40:05 -0500
committerJeff Carr <[email protected]>2024-10-25 16:40:05 -0500
commit4d43c36db5d87fcd8a30242e424017468a7c48c0 (patch)
tree3f546b5ab89b30561487138a703070cee80459eb /change.go
parent15f48a01ab043a996b72460358ffca2e47b3d88f (diff)
more xml checks
Signed-off-by: Jeff Carr <[email protected]>
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: