summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2013-04-04 13:30:45 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2013-04-04 13:30:45 (GMT)
commit46342f639876ebe60be6b27a7fd6712f61941d0e (patch)
treea5b50b8d53c9e6f9af64f687b25528c5fa7d3e42
parent9ab7c470005209b36eeb87a7f02e479f4379f107 (diff)
downloadhdf5-46342f639876ebe60be6b27a7fd6712f61941d0e.zip
hdf5-46342f639876ebe60be6b27a7fd6712f61941d0e.tar.gz
hdf5-46342f639876ebe60be6b27a7fd6712f61941d0e.tar.bz2
[svn-r23544] Description:
Correct API version mistake w/H5Acreate -> H5Acreate2 Tested on: Mac OSX/64 10.8.3 (amazon) w/parallel
-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 4be0296..02c809d 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");