diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-26 17:25:35 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-26 17:25:35 (GMT) |
commit | bda4c6c94e77a5ff0aceb7117c90e371505ba233 (patch) | |
tree | c19e1bc715f877c20e564ebd23d6818104acfad1 /src/H5A.c | |
parent | 808847e0a1f5671c61e51455e8d6314d83341fef (diff) | |
download | hdf5-bda4c6c94e77a5ff0aceb7117c90e371505ba233.zip hdf5-bda4c6c94e77a5ff0aceb7117c90e371505ba233.tar.gz hdf5-bda4c6c94e77a5ff0aceb7117c90e371505ba233.tar.bz2 |
[svn-r792] Changed return type for H5Aget_name from size_t to hssize_t to allow negative
error values to be returned correctly.
Diffstat (limited to 'src/H5A.c')
-rw-r--r-- | src/H5A.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -986,7 +986,7 @@ H5Aget_type(hid_t attr_id) PURPOSE Gets a copy of the name for an attribute USAGE - size_t H5Aget_name (attr_id, buf_size, buf) + hssize_t H5Aget_name (attr_id, buf_size, buf) hid_t attr_id; IN: Attribute to get name of size_t buf_size; IN: The size of the buffer to store the string in. char *buf; IN: Buffer to store name in @@ -1003,7 +1003,7 @@ H5Aget_type(hid_t attr_id) the string terminator is stored in the last position of the buffer to properly terminate the string. --------------------------------------------------------------------------*/ -size_t +hssize_t H5Aget_name(hid_t attr_id, size_t buf_size, char *buf) { H5A_t *attr = NULL; |