summaryrefslogtreecommitdiffstats
path: root/testpar
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2013-04-04 13:33:56 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2013-04-04 13:33:56 (GMT)
commit60895bd6154b404818b0d257010d7731383ae7bd (patch)
tree264680d9e38aa48b438ce16b59ee68117aa2432e /testpar
parent06a302be30b93f0ae4430335e51c9e6bb2cff06f (diff)
downloadhdf5-60895bd6154b404818b0d257010d7731383ae7bd.zip
hdf5-60895bd6154b404818b0d257010d7731383ae7bd.tar.gz
hdf5-60895bd6154b404818b0d257010d7731383ae7bd.tar.bz2
[svn-r23545] Description:
Bring r23544 from trunk to 1.8 branch: Correct API version mistake w/H5Acreate -> H5Acreate2 Tested on: Mac OSX/64 10.8.3 (amazon) w/parallel
Diffstat (limited to 'testpar')
-rw-r--r--testpar/t_dset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/t_dset.c b/testpar/t_dset.c
index 6451910..743de3a 100644
--- a/testpar/t_dset.c
+++ b/testpar/t_dset.c
@@ -4082,7 +4082,7 @@ test_dense_attr(void)
atFileSpace = H5Screate_simple(1, atDims, NULL);
VRFY((atFileSpace > 0), "H5Screate_simple succeeded");
- atid = H5Acreate(gid, "bar", H5T_STD_U64LE, atFileSpace, H5P_DEFAULT, H5P_DEFAULT);
+ atid = H5Acreate2(gid, "bar", H5T_STD_U64LE, atFileSpace, H5P_DEFAULT, H5P_DEFAULT);
VRFY((atid > 0), "H5Acreate succeeded");
status = H5Sclose(atFileSpace);
VRFY((status >= 0), "H5Sclose succeeded");