[mpich] MPICH primary repository branch, master, updated. v3.2-477-g4fcffbe
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 4fcffbe695cb360db588b4c2e67a379ead5c9c9d (commit) from 245f4c1fdce2f93d98c1ed137733419648ad6e86 (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/4fcffbe695cb360db588b4c2e67a379ead... commit 4fcffbe695cb360db588b4c2e67a379ead5c9c9d Author: Ken Raffenetti <[email protected]> Date: Wed Oct 12 16:17:24 2016 -0500 ROMIO: Fix header include order adio.h must be included first before any system headers so that config settings are taken into account. Fixes an issue with inconsistent types for off_t when using the fallback versions of pwrite/pread. Signed-off-by: Rob Latham <[email protected]> diff --git a/src/mpi/romio/adio/common/ad_read.c b/src/mpi/romio/adio/common/ad_read.c index 19f2908..75b6c48 100644 --- a/src/mpi/romio/adio/common/ad_read.c +++ b/src/mpi/romio/adio/common/ad_read.c @@ -6,9 +6,9 @@ */ +#include "adio.h" #include <unistd.h> -#include "adio.h" #ifdef AGGREGATION_PROFILE #include "mpe.h" #endif diff --git a/src/mpi/romio/adio/common/ad_write.c b/src/mpi/romio/adio/common/ad_write.c index 34a31d9..d1c24ac 100644 --- a/src/mpi/romio/adio/common/ad_write.c +++ b/src/mpi/romio/adio/common/ad_write.c @@ -6,9 +6,9 @@ */ +#include "adio.h" #include <unistd.h> -#include "adio.h" #ifdef AGGREGATION_PROFILE #include "mpe.h" #endif ----------------------------------------------------------------------- Summary of changes: src/mpi/romio/adio/common/ad_read.c | 2 +- src/mpi/romio/adio/common/ad_write.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- MPICH primary repository
participants (1)
-
noreply@mpich.org