[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.2-30-g12c4cd9

Service Account noreply at mpich.org
Wed Dec 16 16:08:47 CST 2015


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "MPICH primary repository".

The branch, master has been updated
       via  12c4cd9c859933cf297fa033bb6637ad79ec521a (commit)
      from  77592165aa38afc218e2f3f5913be4a7e3ef923c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.mpich.org/mpich.git/commitdiff/12c4cd9c859933cf297fa033bb6637ad79ec521a

commit 12c4cd9c859933cf297fa033bb6637ad79ec521a
Author: Ken Raffenetti <raffenet at mcs.anl.gov>
Date:   Tue Dec 15 17:10:17 2015 -0600

    romio: use MPI_Type_create_hindexed
    
    Squashes a warning related to const removal in [c3dbc09ae20a].
    
    Signed-off-by: Rob Latham <robl at mcs.anl.gov>

diff --git a/src/mpi/romio/adio/common/utils.c b/src/mpi/romio/adio/common/utils.c
index 533ff07..bdaf196 100644
--- a/src/mpi/romio/adio/common/utils.c
+++ b/src/mpi/romio/adio/common/utils.c
@@ -94,7 +94,7 @@ int ADIOI_Type_create_hindexed_x(int count,
 	ret = MPI_Type_create_struct(count, blocklens, array_of_displacements,
 		types, newtype);
     } else {
-	ret = MPI_Type_hindexed(count, blocklens,
+	ret = MPI_Type_create_hindexed(count, blocklens,
 		array_of_displacements, oldtype, newtype);
     }
     for (i=0; i< count; i++)

-----------------------------------------------------------------------

Summary of changes:
 src/mpi/romio/adio/common/utils.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list