summaryrefslogtreecommitdiffstats
path: root/fortran/src/H5Af.c
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2002-03-14 20:12:12 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2002-03-14 20:12:12 (GMT)
commit7b77f971886d6b1fb3f4e5a4f0e7454dbc487a09 (patch)
tree2d575eae52c953848fffdd580cc5c998c72fe0e8 /fortran/src/H5Af.c
parent34880b42a01eef71b8746d78775b25f20831ddb1 (diff)
downloadhdf5-7b77f971886d6b1fb3f4e5a4f0e7454dbc487a09.zip
hdf5-7b77f971886d6b1fb3f4e5a4f0e7454dbc487a09.tar.gz
hdf5-7b77f971886d6b1fb3f4e5a4f0e7454dbc487a09.tar.bz2
[svn-r5066]
Purpose: Bug fix Description: I borrowed function HDpackFstring from the HDF4 Library and left name unchanged. It causes linking problems for Fortran users that use both HDF4 and HDF5 Libraries in their applications. Solution: Changed the name to be HD5packFstring Platforms tested: Solaris 2.7
Diffstat (limited to 'fortran/src/H5Af.c')
-rw-r--r--fortran/src/H5Af.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/src/H5Af.c b/fortran/src/H5Af.c
index 15a9b65..5b58244 100644
--- a/fortran/src/H5Af.c
+++ b/fortran/src/H5Af.c
@@ -439,7 +439,7 @@ nh5aget_name_c(hid_t_f *attr_id, size_t_f *bufsize, _fcd buf)
/*
* Convert C name to FORTRAN and place it in the given buffer
*/
- HDpackFstring(c_buf, _fcdtocp(buf), (int)c_bufsize);
+ HD5packFstring(c_buf, _fcdtocp(buf), (int)c_bufsize);
HDfree(c_buf);
ret_value = (int_f)c_size;
return ret_value;