diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-07-26 13:56:09 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-07-26 13:56:09 (GMT) |
commit | bf842f1d52ea679301c8516a16e06622b9f988fb (patch) | |
tree | c0b91c681c696a5978e1a407440a808b60c9e314 /src/H5Pdcpl.c | |
parent | 265833164dda0f2a6948922b95e32b5c7d9a9604 (diff) | |
download | hdf5-bf842f1d52ea679301c8516a16e06622b9f988fb.zip hdf5-bf842f1d52ea679301c8516a16e06622b9f988fb.tar.gz hdf5-bf842f1d52ea679301c8516a16e06622b9f988fb.tar.bz2 |
[svn-r14017] Description:
Fix problem with fill value messages where the version of the format
for a fill value message could depend on the "use the latest format" flag from
the file after it was initially created.
Tested on:
Mac OS X/32 10.4.10 (amazon)
FreeBSD/32 6.2 (duty)
FreeBSD/64 6.2 (liberty)
Diffstat (limited to 'src/H5Pdcpl.c')
-rw-r--r-- | src/H5Pdcpl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Pdcpl.c b/src/H5Pdcpl.c index 17c019a..e9ed6c5 100644 --- a/src/H5Pdcpl.c +++ b/src/H5Pdcpl.c @@ -61,7 +61,7 @@ /* Definitions for fill value. size=0 means fill value will be 0 as * library default; size=-1 means fill value is undefined. */ #define H5D_CRT_FILL_VALUE_SIZE sizeof(H5O_fill_t) -#define H5D_CRT_FILL_VALUE_DEF {{0, NULL, H5O_NULL_ID, {{0, HADDR_UNDEF}}}, NULL, 0, NULL, H5D_ALLOC_TIME_LATE, H5D_FILL_TIME_IFSET, FALSE} +#define H5D_CRT_FILL_VALUE_DEF {{0, NULL, H5O_NULL_ID, {{0, HADDR_UNDEF}}}, H5O_FILL_VERSION_2, NULL, 0, NULL, H5D_ALLOC_TIME_LATE, H5D_FILL_TIME_IFSET, FALSE} #define H5D_CRT_FILL_VALUE_CMP H5P_fill_value_cmp /* Definitions for space allocation time state */ #define H5D_CRT_ALLOC_TIME_STATE_SIZE sizeof(unsigned) |