Skip to content

Commit d8efe3f

Browse files
committed
Fix Int instead of int
1 parent 5b208de commit d8efe3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

BLACS/SRC/igamx2d_.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ F_VOID_FUNC igamx2d_(Int *ConTxt, F_CHAR scope, F_CHAR top, Int *m, Int *n,
277277
ctxt->scp->comm);
278278
if (ctxt->scp->Iam == dest)
279279
{
280-
BI_ivmcopy(Mpval(m), Mpval(n), A, tlda, (int*)bp2->Buff);
280+
BI_ivmcopy(Mpval(m), Mpval(n), A, tlda, (Int*)bp2->Buff);
281281
if (Mpval(ldia) != -1)
282282
BI_TransDist(ctxt, tscope, Mpval(m), Mpval(n), rA, cA, tldia,
283283
(BI_DistType *) &bp2->Buff[idist],
@@ -288,7 +288,7 @@ F_VOID_FUNC igamx2d_(Int *ConTxt, F_CHAR scope, F_CHAR top, Int *m, Int *n,
288288
{
289289
ierr=MPI_Allreduce(bp->Buff, bp2->Buff, bp->N, bp->dtype, BlacComb,
290290
ctxt->scp->comm);
291-
BI_ivmcopy(Mpval(m), Mpval(n), A, tlda, (int*)bp2->Buff);
291+
BI_ivmcopy(Mpval(m), Mpval(n), A, tlda, (Int*)bp2->Buff);
292292
if (Mpval(ldia) != -1)
293293
BI_TransDist(ctxt, tscope, Mpval(m), Mpval(n), rA, cA, tldia,
294294
(BI_DistType *) &bp2->Buff[idist],

0 commit comments

Comments
 (0)