summaryrefslogtreecommitdiffstats
path: root/src/H5A.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-07-19 14:47:13 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-07-19 14:47:13 (GMT)
commit0bbdb70ed7ef9173cce7492bc0c7679367e71d44 (patch)
tree911a6df6808abb87b4ed2c92b5f45714dd8c936e /src/H5A.c
parentc55d0f4e1e09e813fec5fcaa0541150c1ee2a36f (diff)
downloadhdf5-0bbdb70ed7ef9173cce7492bc0c7679367e71d44.zip
hdf5-0bbdb70ed7ef9173cce7492bc0c7679367e71d44.tar.gz
hdf5-0bbdb70ed7ef9173cce7492bc0c7679367e71d44.tar.bz2
[svn-r13989] Description:
Rename H5A_get_version() to H5A_set_version() and actually set the attributes version in the routine. Tested on: Mac OS X/32 10.4.10 (amazon) FreeBSD/32 6.2 (duty) Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5A.c')
-rw-r--r--src/H5A.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5A.c b/src/H5A.c
index c308611..5bcbd7f 100644
--- a/src/H5A.c
+++ b/src/H5A.c
@@ -399,7 +399,8 @@ H5A_create(const H5G_loc_t *loc, const char *name, const H5T_t *type,
attr->obj_opened = TRUE;
/* Set the version to encode the attribute with */
- attr->version = H5A_get_version(attr->oloc.file, attr);
+ if(H5A_set_version(attr->oloc.file, attr) < 0)
+ HGOTO_ERROR(H5E_ATTR, H5E_CANTSET, FAIL, "unable to update attribute version")
/* Insert the attribute into the object header */
if(H5O_attr_create(&(attr->oloc), dxpl_id, attr) < 0)