1
1

Mismatch between the reported subversion and the one in the mpi.h.

Thanks to Rob Egan for the report.

This commit was SVN r20985.
Этот коммит содержится в:
George Bosilca 2009-04-14 05:29:07 +00:00
родитель 778c8c86d2
Коммит 05ee4c280e

Просмотреть файл

@ -2,7 +2,7 @@
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2005 The University of Tennessee and The University
* Copyright (c) 2004-2009 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
@ -63,8 +63,8 @@ int MPI_Get_version(int *version, int *subversion)
/* According to the MPI-2 specification */
*version = 2;
*subversion = 0;
*version = MPI_VERSION;
*subversion = MPI_SUBVERSION;
return MPI_SUCCESS;
}