Fossil SCM
Fix a bug in "fossil bisect" introduced by [ebd239de02c4b9f2].
Commit
680acb2831ad5d5c2398773bf002bf2dd7fca14552e42bea9983ac33aca0ff8f
Parent
787a45e58a59d49…
1 file changed
+1
-1
+1
-1
| --- src/bisect.c | ||
| +++ src/bisect.c | ||
| @@ -282,11 +282,11 @@ | ||
| 282 | 282 | rid = atoi(blob_str(&id)); |
| 283 | 283 | if( rid>0 ){ |
| 284 | 284 | bisect_log_append(&ins, cnt, "GOOD", rid); |
| 285 | 285 | lastGood = rid; |
| 286 | 286 | }else{ |
| 287 | - bisect_log_append(&ins, cnt, "BAD", rid); | |
| 287 | + bisect_log_append(&ins, cnt, "BAD", -rid); | |
| 288 | 288 | lastBad = -rid; |
| 289 | 289 | } |
| 290 | 290 | } |
| 291 | 291 | } |
| 292 | 292 | if( iCurrent>0 ){ |
| 293 | 293 |
| --- src/bisect.c | |
| +++ src/bisect.c | |
| @@ -282,11 +282,11 @@ | |
| 282 | rid = atoi(blob_str(&id)); |
| 283 | if( rid>0 ){ |
| 284 | bisect_log_append(&ins, cnt, "GOOD", rid); |
| 285 | lastGood = rid; |
| 286 | }else{ |
| 287 | bisect_log_append(&ins, cnt, "BAD", rid); |
| 288 | lastBad = -rid; |
| 289 | } |
| 290 | } |
| 291 | } |
| 292 | if( iCurrent>0 ){ |
| 293 |
| --- src/bisect.c | |
| +++ src/bisect.c | |
| @@ -282,11 +282,11 @@ | |
| 282 | rid = atoi(blob_str(&id)); |
| 283 | if( rid>0 ){ |
| 284 | bisect_log_append(&ins, cnt, "GOOD", rid); |
| 285 | lastGood = rid; |
| 286 | }else{ |
| 287 | bisect_log_append(&ins, cnt, "BAD", -rid); |
| 288 | lastBad = -rid; |
| 289 | } |
| 290 | } |
| 291 | } |
| 292 | if( iCurrent>0 ){ |
| 293 |