Skip to content

Commit dc036e8

Browse files
authored
Merge pull request #13542 from QiaoK/indentation_fix
coll/ucc: Fix indentation issue with tab.
2 parents d3683b8 + 3980e80 commit dc036e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ompi/mca/coll/ucc/coll_ucc_module.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,9 @@ static ucc_status_t oob_allgather_test(void *req)
207207
tmpsend = (char*)oob_req->rbuf + (ptrdiff_t)senddatafrom * (ptrdiff_t)msglen;
208208
rc = MCA_PML_CALL(isend(tmpsend, msglen, MPI_BYTE, sendto, MCA_COLL_BASE_TAG_UCC,
209209
MCA_PML_BASE_SEND_STANDARD, comm, &oob_req->reqs[0]));
210-
if (OMPI_SUCCESS != rc) {
210+
if (OMPI_SUCCESS != rc) {
211211
return UCC_ERR_NO_MESSAGE;
212-
}
212+
}
213213
rc = MCA_PML_CALL(irecv(tmprecv, msglen, MPI_BYTE, recvfrom,
214214
MCA_COLL_BASE_TAG_UCC, comm, &oob_req->reqs[1]));
215215
if (OMPI_SUCCESS != rc) {

0 commit comments

Comments
 (0)