summaryrefslogtreecommitdiffstats
path: root/fortran
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2008-05-09 16:10:13 (GMT)
committerScot Breitenfeld <brtnfld@hdfgroup.org>2008-05-09 16:10:13 (GMT)
commita42154c44125374632b3e4a556e21ee31fb8f20f (patch)
tree60753ffb51086cfdf793ca9b39b76717a868c457 /fortran
parent4e261a5427fc2211e927303fdcceb1aaa6c0ee51 (diff)
downloadhdf5-a42154c44125374632b3e4a556e21ee31fb8f20f.zip
hdf5-a42154c44125374632b3e4a556e21ee31fb8f20f.tar.gz
hdf5-a42154c44125374632b3e4a556e21ee31fb8f20f.tar.bz2
[svn-r14957] Fixed integer type mismatch in c function
Diffstat (limited to 'fortran')
-rw-r--r--fortran/src/H5Af.c2
-rw-r--r--fortran/src/H5f90proto.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/fortran/src/H5Af.c b/fortran/src/H5Af.c
index 9818258..4eab9c9 100644
--- a/fortran/src/H5Af.c
+++ b/fortran/src/H5Af.c
@@ -1340,7 +1340,7 @@ done:
*---------------------------------------------------------------------------*/
int_f
nh5aopen_by_idx_c (hid_t_f *loc_id, _fcd obj_name, size_t_f *obj_namelen,
- int_f *idx_type, int_f *order, size_t_f *n, hid_t_f *aapl_id, hid_t_f *lapl_id, hid_t_f *attr_id )
+ int_f *idx_type, int_f *order, hsize_t_f *n, hid_t_f *aapl_id, hid_t_f *lapl_id, hid_t_f *attr_id )
{
char *c_obj_name = NULL; /* Buffer to hold C string */
H5_index_t c_idx_type;
diff --git a/fortran/src/H5f90proto.h b/fortran/src/H5f90proto.h
index 4c8aabf..40f5d7a 100644
--- a/fortran/src/H5f90proto.h
+++ b/fortran/src/H5f90proto.h
@@ -578,7 +578,7 @@ H5_FCDLL int_f nh5aget_name_by_idx_c (hid_t_f *loc_id, _fcd obj_name, size_t_f *
size_t_f *size, hid_t_f *lapl_id); /* MSB */
H5_FCDLL int_f nh5aget_create_plist_c ( hid_t_f *attr_id, hid_t_f *creation_prop_id ); /* MSB */
H5_FCDLL int_f nh5aopen_by_idx_c (hid_t_f *loc_id, _fcd obj_name, size_t_f *obj_namelen,
- int_f *idx_type, int_f *order, size_t_f *n, hid_t_f *aapl_id, hid_t_f *lapl_id, hid_t_f *attr_id); /* MSB */
+ int_f *idx_type, int_f *order, hsize_t_f *n, hid_t_f *aapl_id, hid_t_f *lapl_id, hid_t_f *attr_id); /* MSB */
H5_FCDLL int_f nh5aget_info_c (hid_t_f *loc_id, int_f *corder_valid, int_f *corder,
int_f *cset, hsize_t_f *data_size ); /* MSB */
H5_FCDLL int_f nh5aget_info_by_idx_c (hid_t_f *loc_id, _fcd obj_name, size_t_f *obj_namelen,