diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2008-05-05 01:00:37 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2008-05-05 01:00:37 (GMT) |
commit | e182fc3bb89b465640b6428c15abd57e1b3fd8e6 (patch) | |
tree | 867115a07ae7d9da7f8859590006d47a1a89b610 /fortran/src/H5Lf.c | |
parent | f6069ad57e7ddf4b97e4c40e16d1b09464cf62a5 (diff) | |
download | hdf5-e182fc3bb89b465640b6428c15abd57e1b3fd8e6.zip hdf5-e182fc3bb89b465640b6428c15abd57e1b3fd8e6.tar.gz hdf5-e182fc3bb89b465640b6428c15abd57e1b3fd8e6.tar.bz2 |
[svn-r14930] Maintenance: Fixed more bugs/typos and enabled tests that were failing previously on linew.
Currently only one test (dense attributes) is failing. It looks like C library problem and we
have a similar bug report in Bugzilla: when dense storage is used, attributes are not written
to the file; somehow similar C test doesn't expose the problem while Fortran test does.
Platforms tested: linew, kagiso with g95 and PGI
Diffstat (limited to 'fortran/src/H5Lf.c')
-rw-r--r-- | fortran/src/H5Lf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/src/H5Lf.c b/fortran/src/H5Lf.c index 208ad19..b6f0a8e 100644 --- a/fortran/src/H5Lf.c +++ b/fortran/src/H5Lf.c @@ -301,7 +301,7 @@ nh5lcreate_hard_c(hid_t_f *obj_loc_id, _fcd obj_name, size_t_f *obj_namelen, *---------------------------------------------------------------------------*/ int_f nh5ldelete_by_idx_c (hid_t_f *loc_id, _fcd group_name, size_t_f *group_namelen, - int_f *index_field, int_f *order, size_t_f *n, hid_t_f *lapl_id) + int_f *index_field, int_f *order, hsize_t_f *n, hid_t_f *lapl_id) { char *c_group_name = NULL; /* Buffer to hold C string */ H5_index_t c_index_field; |