diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2014-04-03 15:01:21 (GMT) |
---|---|---|
committer | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2014-04-03 15:01:21 (GMT) |
commit | b0bdd254177e5464a74fdd9256e3b63cc132571a (patch) | |
tree | b9077c690fcd27fed9b014992af41b95ee18ab38 | |
parent | b87b1c965d1cfc87fe3123c6062a0e142001753c (diff) | |
download | hdf5-b0bdd254177e5464a74fdd9256e3b63cc132571a.zip hdf5-b0bdd254177e5464a74fdd9256e3b63cc132571a.tar.gz hdf5-b0bdd254177e5464a74fdd9256e3b63cc132571a.tar.bz2 |
[svn-r24952] Fixed -i8 -r8 error with optimization on jam using intel compiler.
Tested: jam (intel)
-rw-r--r-- | fortran/test/tH5P_F03.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/test/tH5P_F03.f90 b/fortran/test/tH5P_F03.f90 index 85bceb7..5d6b1b9 100644 --- a/fortran/test/tH5P_F03.f90 +++ b/fortran/test/tH5P_F03.f90 @@ -426,7 +426,7 @@ SUBROUTINE test_h5p_file_image(total_error) CALL check("h5pget_file_image_f", error, total_error) ! Check that sizes are the same, and that the buffers are identical but separate - CALL VERIFY("h5pget_file_image_f", temp_size, size, total_error) + CALL VERIFY("h5pget_file_image_f", INT(temp_size), INT(size), total_error) ! Verify the image data is correct DO i = 1, count |