diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2021-10-29 13:13:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-29 13:13:21 (GMT) |
commit | 9e0f68b967f3e28b6d052ccc45556aedae616d7a (patch) | |
tree | 8365c7c015947364307c6cb7fa858edc4445c213 /fortran/test | |
parent | fabdce56efbc0aed942770414bef36c9fd81c878 (diff) | |
download | hdf5-9e0f68b967f3e28b6d052ccc45556aedae616d7a.zip hdf5-9e0f68b967f3e28b6d052ccc45556aedae616d7a.tar.gz hdf5-9e0f68b967f3e28b6d052ccc45556aedae616d7a.tar.bz2 |
correct error checking string (#1143)
* fixed missed closing of a dataset
* fixed missed closing of a dataset
* fixed typo in error return
* Committing clang-format changes
* minor edits
* code format
* Committing clang-format changes
* code format
* minor edit
* switched from using MPI_count, to actual bytes written for H5FD_mpio_debug rw debugging
* Committing clang-format changes
* changed size_i in printf to reflect the I/O.
* Committing clang-format changes
* Fixed seg fault with xlf on BE with -qintsize=8
* fixed error function string
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'fortran/test')
-rw-r--r-- | fortran/test/tH5A.F90 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fortran/test/tH5A.F90 b/fortran/test/tH5A.F90 index 4d56bed..d5ce9a2 100644 --- a/fortran/test/tH5A.F90 +++ b/fortran/test/tH5A.F90 @@ -408,13 +408,13 @@ CONTAINS !open the INTEGER attrbute by name ! CALL h5aopen_name_f(dset_id, aname5, attr5_id, error) - CALL check("h5aopen_idx_f",error,total_error) + CALL check("h5aopen_name_f",error,total_error) ! !open the NULL attrbute by name ! CALL h5aopen_name_f(dset_id, aname6, attr6_id, error) - CALL check("h5aopen_idx_f",error,total_error) + CALL check("h5aopen_name_f",error,total_error) ! !get the attrbute name |