diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-10-23 22:09:33 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-10-23 22:09:33 (GMT) |
commit | d1f3de3a587d3fc740d076e012d188a19c3300d9 (patch) | |
tree | b347a6c1adfa4684e66605e0f6e216aa92335dee /src/H5FPclient.c | |
parent | f5b0c68a53004cabf9b307bc50a00f4740448d9e (diff) | |
download | hdf5-d1f3de3a587d3fc740d076e012d188a19c3300d9.zip hdf5-d1f3de3a587d3fc740d076e012d188a19c3300d9.tar.gz hdf5-d1f3de3a587d3fc740d076e012d188a19c3300d9.tar.bz2 |
[svn-r6029] Purpose:
Oops
Description:
The H5FPprivate.h file was being #included even if PARALLEL was
turned off.
Solution:
put the #include of the H5FPprivate.h file within the #ifdef block so
that it doesn't get included if H5_HAVE_FPHDF5 isn't defined.
Platforms tested:
Linux...
Diffstat (limited to 'src/H5FPclient.c')
-rw-r--r-- | src/H5FPclient.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5FPclient.c b/src/H5FPclient.c index 366b22f..7926813 100644 --- a/src/H5FPclient.c +++ b/src/H5FPclient.c @@ -21,12 +21,13 @@ #include "H5private.h" /* Generic Functions */ #include "H5Eprivate.h" /* Error Handling */ -#include "H5FPprivate.h" /* Flexible Parallel Functions */ #include "H5Oprivate.h" /* Object Headers */ #include "H5TBprivate.h" /* Threaded, Balanced, Binary Trees */ #ifdef H5_HAVE_FPHDF5 +#include "H5FPprivate.h" /* Flexible Parallel Functions */ + #include "mpi.h" /* Pablo mask */ |