summaryrefslogtreecommitdiffstats
path: root/fortran/test/tH5T.f90
diff options
context:
space:
mode:
Diffstat (limited to 'fortran/test/tH5T.f90')
-rw-r--r--fortran/test/tH5T.f908
1 files changed, 4 insertions, 4 deletions
diff --git a/fortran/test/tH5T.f90 b/fortran/test/tH5T.f90
index 2b6301b..ca2f4ab 100644
--- a/fortran/test/tH5T.f90
+++ b/fortran/test/tH5T.f90
@@ -655,20 +655,20 @@
write (*,*) "got cset is not correct"
total_error = total_error + 1
end if
- CALL h5tset_strpad_f(dtype5_id, H5T_STR_NULL_F, error)
+ CALL h5tset_strpad_f(dtype5_id, H5T_STR_NULLPAD_F, error)
CALL check("h5tset_strpad_f",error,total_error)
CALL h5tget_strpad_f(dtype5_id, strpad, error)
CALL check("h5tget_strpad_f",error,total_error)
- if(strpad .ne. H5T_STR_NULL_F ) then
+ if(strpad .ne. H5T_STR_NULLPAD_F ) then
write (*,*) "got strpad is not correct"
total_error = total_error + 1
end if
- CALL h5tset_strpad_f(dtype5_id, H5T_STR_SPACE_F, error)
+ CALL h5tset_strpad_f(dtype5_id, H5T_STR_SPACEPAD_F, error)
CALL check("h5tset_strpad_f",error,total_error)
CALL h5tget_strpad_f(dtype5_id, strpad, error)
CALL check("h5tget_strpad_f",error,total_error)
- if(strpad .ne. H5T_STR_SPACE_F ) then
+ if(strpad .ne. H5T_STR_SPACEPAD_F ) then
write (*,*) "got strpad is not correct"
total_error = total_error + 1
end if