summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2008-06-29 04:55:48 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2008-06-29 04:55:48 (GMT)
commit0286d971c7c954af1a0bb152c1492fa62dcc9ead (patch)
treeeabc99f6e4e23a630a03acb90d9ae3db42672488 /test
parentc9c701d0d8979c05b0cd9fa57bf1e57cba6614db (diff)
downloadhdf5-0286d971c7c954af1a0bb152c1492fa62dcc9ead.zip
hdf5-0286d971c7c954af1a0bb152c1492fa62dcc9ead.tar.gz
hdf5-0286d971c7c954af1a0bb152c1492fa62dcc9ead.tar.bz2
[svn-r15294] Description:
Switch from H5Tarray_create -> H5Tarray_create2 to avoid problem when building with v16 APIs. Tested on: Eyeballed (5 min before daily tests... :-)
Diffstat (limited to 'test')
-rw-r--r--test/dtypes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dtypes.c b/test/dtypes.c
index 9b7e674..ed1b049 100644
--- a/test/dtypes.c
+++ b/test/dtypes.c
@@ -1532,7 +1532,7 @@ test_compound_8(void)
* Test H5Tpack for array type of nested compound type
*/
/* Create an array type of compound type */
- if((arr_tid = H5Tarray_create(tid2_copy, 1, dims)) < 0) {
+ if((arr_tid = H5Tarray_create2(tid2_copy, 1, dims)) < 0) {
H5_FAILED(); AT();
printf("Can't create an array datatype\n");
goto error;