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/H5Af.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/H5Af.c')
-rw-r--r-- | fortran/src/H5Af.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fortran/src/H5Af.c b/fortran/src/H5Af.c index 5fdc27e..3b6feb0 100644 --- a/fortran/src/H5Af.c +++ b/fortran/src/H5Af.c @@ -1193,7 +1193,7 @@ done: *---------------------------------------------------------------------------*/ int_f nh5adelete_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 *lapl_id) + int_f *idx_type, int_f *order, hsize_t_f *n, hid_t_f *lapl_id) { char *c_obj_name = NULL; /* Buffer to hold C string */ H5_index_t c_idx_type; @@ -1260,7 +1260,7 @@ done: *---------------------------------------------------------------------------*/ int_f nh5aget_name_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, _fcd name, + int_f *idx_type, int_f *order, hsize_t_f *n, _fcd name, size_t_f *size, hid_t_f *lapl_id) { char *c_obj_name = NULL; /* Buffer to hold C string */ @@ -1444,7 +1444,7 @@ done: *---------------------------------------------------------------------------*/ int_f nh5aget_info_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 *lapl_id, + int_f *idx_type, int_f *order, hsize_t_f *n, hid_t_f *lapl_id, int_f *corder_valid, int_f *corder, int_f *cset, hsize_t_f *data_size ) { |