diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2008-06-29 04:55:48 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2008-06-29 04:55:48 (GMT) |
commit | 0286d971c7c954af1a0bb152c1492fa62dcc9ead (patch) | |
tree | eabc99f6e4e23a630a03acb90d9ae3db42672488 | |
parent | c9c701d0d8979c05b0cd9fa57bf1e57cba6614db (diff) | |
download | hdf5-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... :-)
-rw-r--r-- | test/dtypes.c | 2 |
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; |