diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-09-13 16:57:46 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-09-13 16:57:46 (GMT) |
commit | 12f8879c407478ab7cb7c60e1c37554cf370c175 (patch) | |
tree | 87198e8ca2084f756e91827e35c4d438b8a92011 /testpar/t_mdset.c | |
parent | 18758623d78ff9fbd4880761da6d40fdfe44c945 (diff) | |
download | hdf5-12f8879c407478ab7cb7c60e1c37554cf370c175.zip hdf5-12f8879c407478ab7cb7c60e1c37554cf370c175.tar.gz hdf5-12f8879c407478ab7cb7c60e1c37554cf370c175.tar.bz2 |
[svn-r5926] Purpose:
API name change
Description:
Change all "space time" references to "alloc time", including API functions
and macro definitions, etc.
Platforms tested:
FreeBSD 4.6 (sleipnir) w/C++
Solaris 2.7 (arabica) w/FORTRAN
IRIX64 6.5 (modi4) w/parallel & FORTRAN
Diffstat (limited to 'testpar/t_mdset.c')
-rw-r--r-- | testpar/t_mdset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/t_mdset.c b/testpar/t_mdset.c index 1272e42..dae0e0f 100644 --- a/testpar/t_mdset.c +++ b/testpar/t_mdset.c @@ -129,7 +129,7 @@ void compact_dataset(char *filename) VRFY((dcpl>=0), "dataset creation property list succeeded"); ret=H5Pset_layout(dcpl, H5D_COMPACT); VRFY((dcpl >= 0), "set property list for compact dataset"); - ret=H5Pset_space_time(dcpl, H5D_SPACE_ALLOC_EARLY); + ret=H5Pset_alloc_time(dcpl, H5D_ALLOC_TIME_EARLY); VRFY((ret >= 0), "set space allocation time for compact dataset"); dataset = H5Dcreate (iof, dname, H5T_NATIVE_DOUBLE, filespace, dcpl); |