Skip to content

Commit

Permalink
vine: change &= to =
Browse files Browse the repository at this point in the history
  • Loading branch information
JinZhou5042 committed Nov 26, 2024
1 parent 8bba9e3 commit 3cb4596
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions taskvine/src/manager/vine_manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -1277,10 +1277,10 @@ static int fetch_outputs_from_worker(struct vine_manager *q, struct vine_worker_
default:
/* Otherwise get all of the output files. */
if (!t->output_received) {
result &= retrieve_output(q, w, t);
result = retrieve_output(q, w, t);
t->output_received = 1;
}
result &= vine_manager_get_output_files(q, w, t);
result = vine_manager_get_output_files(q, w, t);
break;
}

Expand Down

0 comments on commit 3cb4596

Please sign in to comment.