From 7612f489431e0b53f6acd93234506d9240b9abba Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Sat, 22 Feb 2003 16:55:27 -0500 Subject: [svn-r6428] Purpose: Bug Fix Description: Private header file was included in a public header file by mistake. Solution: Put the private header file into the .c module instead. Platforms tested: Linux 2.4 (see, I really did test it). --- src/H5FDfphdf5.c | 1 + src/H5FDfphdf5.h | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5FDfphdf5.c b/src/H5FDfphdf5.c index 0ec8e32..9309c05 100644 --- a/src/H5FDfphdf5.c +++ b/src/H5FDfphdf5.c @@ -20,6 +20,7 @@ #include "H5FDprivate.h" /* File driver */ #include "H5FDfphdf5.h" /* Flexible PHDF5 I/O file driver */ #include "H5FDmpio.h" /* MPI I/O file driver */ +#include "H5FDprivate.h" /* File drivers */ #include "H5Iprivate.h" /* Object IDs */ #include "H5MMprivate.h" /* Memory allocation */ #include "H5Pprivate.h" /* Property lists */ diff --git a/src/H5FDfphdf5.h b/src/H5FDfphdf5.h index a92dbb4..733908a 100644 --- a/src/H5FDfphdf5.h +++ b/src/H5FDfphdf5.h @@ -16,7 +16,6 @@ #define H5FDFPHDF5_H__ #include "H5FDmpio.h" -#include "H5FDprivate.h" #ifdef H5_HAVE_PARALLEL # define H5FD_FPHDF5 (H5FD_fphdf5_init()) -- cgit v0.12