summaryrefslogtreecommitdiffstats
path: root/src/H5FP.c
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2002-10-23 22:09:33 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2002-10-23 22:09:33 (GMT)
commitd1f3de3a587d3fc740d076e012d188a19c3300d9 (patch)
treeb347a6c1adfa4684e66605e0f6e216aa92335dee /src/H5FP.c
parentf5b0c68a53004cabf9b307bc50a00f4740448d9e (diff)
downloadhdf5-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/H5FP.c')
-rw-r--r--src/H5FP.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5FP.c b/src/H5FP.c
index 5144119..cdf0a7d 100644
--- a/src/H5FP.c
+++ b/src/H5FP.c
@@ -17,12 +17,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"
/* Interface initialization */