diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-07-24 23:13:29 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-07-24 23:13:29 (GMT) |
commit | 9a520f67b2e8379e28c22f0c3578a9ce43b4907a (patch) | |
tree | 86cc109ff485f024ec0f34afad9350fe9def2573 /src/H5Pdcpl.c | |
parent | e143242ce101661a29c5a65f0dd9a4aa37a1af64 (diff) | |
download | hdf5-9a520f67b2e8379e28c22f0c3578a9ce43b4907a.zip hdf5-9a520f67b2e8379e28c22f0c3578a9ce43b4907a.tar.gz hdf5-9a520f67b2e8379e28c22f0c3578a9ce43b4907a.tar.bz2 |
[svn-r14012] Description:
Fix problem with I/O pipeline messages where the version of the format
for a I/O pipeline message could depend on the "use the latest format" flag from
the file after it was initially created.
Tested on:
FreeBSD/32 6.2 (duty)
FreeBSD/64 6.2 (liberty)
Linux/32 2.6 (kagiso)
Mac OS X/32 10.4.10 (amazon)
Solaris/32 2.10 (linew)
Diffstat (limited to 'src/H5Pdcpl.c')
-rw-r--r-- | src/H5Pdcpl.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5Pdcpl.c b/src/H5Pdcpl.c index be1c3e0..17c019a 100644 --- a/src/H5Pdcpl.c +++ b/src/H5Pdcpl.c @@ -28,6 +28,7 @@ /* Module Setup */ /****************/ #define H5P_PACKAGE /*suppress error about including H5Ppkg */ +#define H5Z_PACKAGE /*suppress error about including H5Zpkg */ /***********/ @@ -39,7 +40,7 @@ #include "H5Iprivate.h" /* IDs */ #include "H5MMprivate.h" /* Memory management */ #include "H5Ppkg.h" /* Property lists */ -#include "H5Zprivate.h" /* Data filters */ +#include "H5Zpkg.h" /* Data filters */ /****************/ @@ -71,7 +72,7 @@ #define H5D_CRT_EXT_FILE_LIST_CMP H5P_dcrt_ext_file_list_cmp /* Definitions for data filter pipeline */ #define H5D_CRT_DATA_PIPELINE_SIZE sizeof(H5O_pline_t) -#define H5D_CRT_DATA_PIPELINE_DEF {{0, NULL, H5O_NULL_ID, {{0, HADDR_UNDEF}}}, 0, 0, NULL} +#define H5D_CRT_DATA_PIPELINE_DEF {{0, NULL, H5O_NULL_ID, {{0, HADDR_UNDEF}}}, H5O_PLINE_VERSION_1, 0, 0, NULL} #define H5D_CRT_DATA_PIPELINE_CMP H5P_dcrt_data_pipeline_cmp |