remote: Fix put in commit

This commit is contained in:
Łukasz Magiera
2020-02-04 08:01:13 +01:00
parent f837cb5513
commit 63ee6b6791
2 changed files with 15 additions and 5 deletions
+1 -1
View File
@@ -455,7 +455,7 @@ var chainBisectCmd = &cli.Command{
for {
mid := (start + end) / 2
if end - start == 1 {
if end-start == 1 {
mid = end
start = end
}