summaryrefslogtreecommitdiffstats
path: root/fortran
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2014-06-04 14:08:17 (GMT)
committerScot Breitenfeld <brtnfld@hdfgroup.org>2014-06-04 14:08:17 (GMT)
commitcf71b7db57f7a457b2f6bef7431b254cd96d3748 (patch)
treea42534abafe9db034e04f4a8cf0c639495a02f03 /fortran
parent4a8b02f838aea25f4806785c6f00f6e05b3faa22 (diff)
downloadhdf5-cf71b7db57f7a457b2f6bef7431b254cd96d3748.zip
hdf5-cf71b7db57f7a457b2f6bef7431b254cd96d3748.tar.gz
hdf5-cf71b7db57f7a457b2f6bef7431b254cd96d3748.tar.bz2
[svn-r25238] Removed warning about the data type of the actual argument does not match the definition to verify function. Trivial fix.
tested: jam (gnu)
Diffstat (limited to 'fortran')
-rw-r--r--fortran/test/tH5MISC_1_8.f902
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/test/tH5MISC_1_8.f90 b/fortran/test/tH5MISC_1_8.f90
index bb7d50a..efc350e 100644
--- a/fortran/test/tH5MISC_1_8.f90
+++ b/fortran/test/tH5MISC_1_8.f90
@@ -257,7 +257,7 @@ SUBROUTINE test_h5s_encode(cleanup, total_error)
! /* Verify the decoded dataspace */
CALL h5sget_simple_extent_npoints_f(decoded_sid1, n, error)
CALL check("h5sget_simple_extent_npoints_f", error, total_error)
- CALL VERIFY("h5sget_simple_extent_npoints_f", INT(n), SPACE1_DIM1 * SPACE1_DIM2 * SPACE1_DIM3, &
+ CALL VERIFY("h5sget_simple_extent_npoints_f", INT(n), INT(SPACE1_DIM1 * SPACE1_DIM2 * SPACE1_DIM3), &
total_error)
!