diff options
Diffstat (limited to 'test')
-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 f58dc90..f5bc930 100644 --- a/test/dtypes.c +++ b/test/dtypes.c @@ -2977,7 +2977,7 @@ test_compound_16(void) /* Copy and commit integer datatype */ if((int_id = H5Tcopy(H5T_NATIVE_INT)) < 0) TEST_ERROR - if(H5Tcommit (file, "int", int_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT) < 0) TEST_ERROR + if(H5Tcommit2(file, "int", int_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT) < 0) TEST_ERROR /* Create file compound datatype */ if((cmpd_f_tid = H5Tcreate(H5T_COMPOUND, 2 * sizeof(int) + 2)) < 0) TEST_ERROR |