diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-09-08 20:07:40 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-09-08 20:07:40 (GMT) |
commit | d6d756ef965762cb109e8d004dde3768f5bc567b (patch) | |
tree | ec612c6e3cc6bc582b4c80203e72315ed25f9f8f /test | |
parent | c034e0b43cc6e4a3dd4a755cb73d6f68dac79072 (diff) | |
download | hdf5-d6d756ef965762cb109e8d004dde3768f5bc567b.zip hdf5-d6d756ef965762cb109e8d004dde3768f5bc567b.tar.gz hdf5-d6d756ef965762cb109e8d004dde3768f5bc567b.tar.bz2 |
[svn-r1634] fixed the compilation error where the H5P_DATASET_CREATE and H5P_DATA_XFER
were using the old names.
Diffstat (limited to 'test')
-rw-r--r-- | test/overhead.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/overhead.c b/test/overhead.c index c8d81ac..35d6eef 100644 --- a/test/overhead.c +++ b/test/overhead.c @@ -197,9 +197,9 @@ test(fill_t fill_style, const double splits[], if ((file=H5Fcreate(FILE_NAME_1, H5F_ACC_TRUNC, H5P_DEFAULT, fapl))<0) { goto error; } - if ((dcpl=H5Pcreate(H5P_DATA_CREATE))<0) goto error; + if ((dcpl=H5Pcreate(H5P_DATASET_CREATE))<0) goto error; if (H5Pset_chunk(dcpl, 1, ch_size)<0) goto error; - if ((xfer=H5Pcreate(H5P_DATASET_XFER))<0) goto error; + if ((xfer=H5Pcreate(H5P_DATA_XFER))<0) goto error; if (H5Pset_btree_ratios(xfer, splits[0], splits[1], splits[2])<0) { goto error; } |