aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plumbing/object/patch.go12
1 files changed, 10 insertions, 2 deletions
diff --git a/plumbing/object/patch.go b/plumbing/object/patch.go
index 9b5f438..56b62c1 100644
--- a/plumbing/object/patch.go
+++ b/plumbing/object/patch.go
@@ -287,8 +287,16 @@ func printStat(fileStats []FileStat) string {
for _, fs := range fileStats {
addn := float64(fs.Addition)
deln := float64(fs.Deletion)
- adds := strings.Repeat("+", int(math.Floor(addn/scaleFactor)))
- dels := strings.Repeat("-", int(math.Floor(deln/scaleFactor)))
+ addc := int(math.Floor(addn/scaleFactor))
+ delc := int(math.Floor(deln/scaleFactor))
+ if addc < 0 {
+ addc = 0
+ }
+ if delc < 0 {
+ delc = 0
+ }
+ adds := strings.Repeat("+", addc)
+ dels := strings.Repeat("-", delc)
finalOutput += fmt.Sprintf(" %s | %d %s%s\n", fs.Name, (fs.Addition + fs.Deletion), adds, dels)
}