diff options
author | Barbara Jones <bljones@hdfgroup.org> | 2001-03-09 16:50:02 (GMT) |
---|---|---|
committer | Barbara Jones <bljones@hdfgroup.org> | 2001-03-09 16:50:02 (GMT) |
commit | e5cf05cbef1b2ebaecd03dc6ff7db09785dc8efe (patch) | |
tree | 63e3911c2471a1659d8649550589af469e922dcd | |
parent | d54e43ca01b3ba5361e1cde44de4ab1e35c6e5ca (diff) | |
download | hdf5-e5cf05cbef1b2ebaecd03dc6ff7db09785dc8efe.zip hdf5-e5cf05cbef1b2ebaecd03dc6ff7db09785dc8efe.tar.gz hdf5-e5cf05cbef1b2ebaecd03dc6ff7db09785dc8efe.tar.bz2 |
[svn-r3581] Number of points selected was integer, not size_t - failed on IRIX64.
Purpose:
[is this a bug fix? feature? ...]
Description:
[describe the bug, or describe the new feature, etc]
Solution:
[details about the changes, algorithm, etc...]
[Please as detail as you can since your own explanation is
better than others guessing it from the code.]
Platforms tested:
[machines you have tested the changed version. This is absolute
important. Test it out on at least two or three different platforms
such as Big-endian-32bit (SUN/IRIX), little-endian-32(LINUX) and
64-bit (IRIX64/UNICOS/DEC-ALPHA) would be good.]
-rw-r--r-- | doc/html/Tutor/examples/selectele.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/html/Tutor/examples/selectele.f90 b/doc/html/Tutor/examples/selectele.f90 index 4bb8929..c75958c 100644 --- a/doc/html/Tutor/examples/selectele.f90 +++ b/doc/html/Tutor/examples/selectele.f90 @@ -24,7 +24,7 @@ INTEGER, PARAMETER :: RANK = 2 ! Dataset rank - INTEGER, PARAMETER :: NUMP = 2 ! Number of points selected + INTEGER(SIZE_T), PARAMETER :: NUMP = 2 ! Number of points selected INTEGER(HID_T) :: file1_id ! File1 identifier INTEGER(HID_T) :: file2_id ! File2 identifier |