diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2008-05-04 16:48:07 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2008-05-04 16:48:07 (GMT) |
commit | f6069ad57e7ddf4b97e4c40e16d1b09464cf62a5 (patch) | |
tree | 8772b27441a53c0c19a819da1226a3e65638cba7 /fortran/src/H5Tf.c | |
parent | 31b3c349083232358eb5b0ae4c0ee7c1f1dae4af (diff) | |
download | hdf5-f6069ad57e7ddf4b97e4c40e16d1b09464cf62a5.zip hdf5-f6069ad57e7ddf4b97e4c40e16d1b09464cf62a5.tar.gz hdf5-f6069ad57e7ddf4b97e4c40e16d1b09464cf62a5.tar.bz2 |
[svn-r14928] Maintenance: Cleaned up the code to make it compile on smirom with the g95 compiler
Platforms tested: kagiso with PGI compilers, linew, smirom with GCC and g95 compilers;
some tests and function calls are commented out with !EP string; we will be
working on it.
Diffstat (limited to 'fortran/src/H5Tf.c')
-rw-r--r-- | fortran/src/H5Tf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fortran/src/H5Tf.c b/fortran/src/H5Tf.c index 0ad0bc9..633389b 100644 --- a/fortran/src/H5Tf.c +++ b/fortran/src/H5Tf.c @@ -1709,7 +1709,7 @@ nh5tcommitted_c(hid_t_f *dtype_id) *---------------------------------------------------------------------------*/ int_f -nh5tdecode_c ( _fcd buf, int_f *obj_id ) +nh5tdecode_c ( _fcd buf, hid_t_f *obj_id ) { int ret_value = -1; unsigned char *c_buf = NULL; /* Buffer to hold C string */ @@ -1725,7 +1725,7 @@ nh5tdecode_c ( _fcd buf, int_f *obj_id ) if(c_obj_id < 0) return ret_value; - *obj_id = (int_f)c_obj_id; + *obj_id = (hid_t_f)c_obj_id; ret_value = 0; return ret_value; |