diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-08-23 14:33:49 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-08-23 14:33:49 -0700 |
commit | 08692770339ff551485812d34c54fa6d290694f3 (patch) | |
tree | 717f5848bb6f23283b630829981a9f6880e9f16f | |
parent | Merge branch 'rs/pack-objects-pbase-cleanup' into maint (diff) | |
parent | run_processes_parallel: change confusing task_cb convention (diff) | |
download | tgif-08692770339ff551485812d34c54fa6d290694f3.tar.xz |
Merge branch 'js/run-process-parallel-api-fix' into maint
API fix.
* js/run-process-parallel-api-fix:
run_processes_parallel: change confusing task_cb convention
-rw-r--r-- | builtin/submodule--helper.c | 2 | ||||
-rw-r--r-- | run-command.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/builtin/submodule--helper.c b/builtin/submodule--helper.c index 6abdad3294..3a3c9ca72b 100644 --- a/builtin/submodule--helper.c +++ b/builtin/submodule--helper.c @@ -930,7 +930,7 @@ static int update_clone_task_finished(int result, const struct cache_entry *ce; struct submodule_update_clone *suc = suc_cb; - int *idxP = *(int**)idx_task_cb; + int *idxP = idx_task_cb; int idx = *idxP; free(idxP); diff --git a/run-command.c b/run-command.c index 9e36151bf9..b5e6eb37c0 100644 --- a/run-command.c +++ b/run-command.c @@ -1533,7 +1533,7 @@ static int pp_start_one(struct parallel_processes *pp) if (start_command(&pp->children[i].process)) { code = pp->start_failure(&pp->children[i].err, pp->data, - &pp->children[i].data); + pp->children[i].data); strbuf_addbuf(&pp->buffered_output, &pp->children[i].err); strbuf_reset(&pp->children[i].err); if (code) @@ -1601,7 +1601,7 @@ static int pp_collect_finished(struct parallel_processes *pp) code = pp->task_finished(code, &pp->children[i].err, pp->data, - &pp->children[i].data); + pp->children[i].data); if (code) result = code; |