diff options
-rw-r--r-- | test/istore.c | 4 | ||||
-rw-r--r-- | tools/h5debug.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/test/istore.c b/test/istore.c index 1fa84b5..c6d7b9a 100644 --- a/test/istore.c +++ b/test/istore.c @@ -7,12 +7,14 @@ * * Purpose: Tests various aspects of indexed raw data storage. */ +#define H5F_PACKAGE /*suppress error about including H5Fpkg */ + #include <h5test.h> #include <H5private.h> #include <H5Dprivate.h> #include <H5Iprivate.h> #include <H5Pprivate.h> -#include <H5Fprivate.h> +#include <H5Fpkg.h> #include <H5Gprivate.h> #include <H5MMprivate.h> #include <H5Oprivate.h> diff --git a/tools/h5debug.c b/tools/h5debug.c index ff6b5fe..07ff6b4 100644 --- a/tools/h5debug.c +++ b/tools/h5debug.c @@ -14,11 +14,13 @@ * *------------------------------------------------------------------------- */ +#define H5F_PACKAGE /*suppress error about including H5Fpkg */ + #include <H5private.h> #include <H5Iprivate.h> #include <H5Bprivate.h> #include <H5Pprivate.h> -#include <H5Fprivate.h> +#include <H5Fpkg.h> #include <H5Gprivate.h> #include <H5HGprivate.h> #include <H5HLprivate.h> |