Skip to content

Commit bd7bfa9

Browse files
committed
Fix two more missed int->Int
1 parent 7d6df3e commit bd7bfa9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

BLACS/SRC/igsum2d_.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,13 +166,13 @@ F_VOID_FUNC igsum2d_(Int *ConTxt, F_CHAR scope, F_CHAR top, Int *m, Int *n,
166166
ierr=MPI_Reduce(bp->Buff, bp2->Buff, bp->N, bp->dtype, MPI_SUM,
167167
dest, ctxt->scp->comm);
168168
if (ctxt->scp->Iam == dest)
169-
BI_ivmcopy(Mpval(m), Mpval(n), A, tlda, (int*)bp2->Buff);
169+
BI_ivmcopy(Mpval(m), Mpval(n), A, tlda, (Int*)bp2->Buff);
170170
}
171171
else
172172
{
173173
ierr=MPI_Allreduce(bp->Buff, bp2->Buff, bp->N, bp->dtype, MPI_SUM,
174174
ctxt->scp->comm);
175-
BI_ivmcopy(Mpval(m), Mpval(n), A, tlda, (int*)bp2->Buff);
175+
BI_ivmcopy(Mpval(m), Mpval(n), A, tlda, (Int*)bp2->Buff);
176176
}
177177
if (BI_ActiveQ) BI_UpdateBuffs(NULL);
178178
return;

0 commit comments

Comments
 (0)