summaryrefslogtreecommitdiffstats
path: root/fortran/src/H5Sf.c
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2014-03-22 20:01:58 (GMT)
committerScot Breitenfeld <brtnfld@hdfgroup.org>2014-03-22 20:01:58 (GMT)
commit958a762dd16bac9a1c5a7a2c594adce6758f81f4 (patch)
treeb230627a0be40407f9541a578cf7125c0473b966 /fortran/src/H5Sf.c
parent60df159d33d8793dd5764e2ae032e0e89fc44c9b (diff)
downloadhdf5-958a762dd16bac9a1c5a7a2c594adce6758f81f4.zip
hdf5-958a762dd16bac9a1c5a7a2c594adce6758f81f4.tar.gz
hdf5-958a762dd16bac9a1c5a7a2c594adce6758f81f4.tar.bz2
[svn-r24866] Fixed compiler warnings using gnu 4.8.1
Tested: jam( intel, gnu, pgi)
Diffstat (limited to 'fortran/src/H5Sf.c')
-rw-r--r--fortran/src/H5Sf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/src/H5Sf.c b/fortran/src/H5Sf.c
index a944e20..8e17026 100644
--- a/fortran/src/H5Sf.c
+++ b/fortran/src/H5Sf.c
@@ -575,7 +575,7 @@ nh5sget_simple_extent_npoints_c ( hid_t_f *space_id , hsize_t_f *npoints )
{
int ret_value = 0;
hid_t c_space_id;
- hsize_t c_npoints;
+ hssize_t c_npoints;
c_space_id = *space_id;
c_npoints = H5Sget_simple_extent_npoints(c_space_id);