Skip to content

Commit 13288f3

Browse files
author
Scott Arbeit
committed
Fixed int32-int64 error.
1 parent d9da39e commit 13288f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-sizer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ func mainImplementation(ctx context.Context, stdout, stderr io.Writer, args []st
353353
historySize.ShowUnreachable = true
354354
unreachableStats, err := repo.GetUnreachableStats()
355355
if err == nil {
356-
historySize.UnreachableObjectCount = counts.Count32(unreachableStats.Count)
356+
historySize.UnreachableObjectCount = counts.Count64(unreachableStats.Count)
357357
historySize.UnreachableObjectSize = counts.Count64(unreachableStats.Size)
358358
}
359359
}

0 commit comments

Comments
 (0)