Merge branch 'ab/progress-users-adjust-counters'
The code to show progress indicator in a few code paths did not cover between 0-100%, which has been corrected. * ab/progress-users-adjust-counters: entry: show finer-grained counter in "Filtering content" progress line commit-graph: fix bogus counter in "Scanning merged commits" progress line
This commit is contained in:
@ -2125,7 +2125,7 @@ static void sort_and_scan_merged_commits(struct write_commit_graph_context *ctx)
|
||||
|
||||
ctx->num_extra_edges = 0;
|
||||
for (i = 0; i < ctx->commits.nr; i++) {
|
||||
display_progress(ctx->progress, i);
|
||||
display_progress(ctx->progress, i + 1);
|
||||
|
||||
if (i && oideq(&ctx->commits.list[i - 1]->object.oid,
|
||||
&ctx->commits.list[i]->object.oid)) {
|
||||
|
||||
Reference in New Issue
Block a user