X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=run-command.c;h=b5e6eb37c0eb3d6ed0cbd4fc35e879bf9fbd3db6;hb=d9f5ea42ff04432d2e41c3d3d7d97a1eabe4f4f5;hp=9e36151bf97d36945ca3464e719687718ee6d1c7;hpb=2842e06352ecaffae0e1f57704526b6b324bd435;p=git-core%2Fgit.git diff --git a/run-command.c b/run-command.c index 9e36151bf..b5e6eb37c 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;