summaryrefslogtreecommitdiffstats
path: root/src/H5O.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-06-18 20:54:19 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-06-18 20:54:19 (GMT)
commit4fc73028edd0829b1e45ebe9c597cb91d49a9963 (patch)
treebbe35982b184c142c8f2b17ae69442189d805c90 /src/H5O.c
parent1aeaa7fbb1072d18a533b7bbf8f996f6b194de73 (diff)
downloadhdf5-4fc73028edd0829b1e45ebe9c597cb91d49a9963.zip
hdf5-4fc73028edd0829b1e45ebe9c597cb91d49a9963.tar.gz
hdf5-4fc73028edd0829b1e45ebe9c597cb91d49a9963.tar.bz2
[svn-r7060] Purpose:
Code cleanup Description: Change some variables that are keywords in C++ to non-keywords. Platforms tested: FreeBSD 4.8 (sleipnir) too minor to require full h5committest
Diffstat (limited to 'src/H5O.c')
-rw-r--r--src/H5O.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5O.c b/src/H5O.c
index 21a9b36..5144220 100644
--- a/src/H5O.c
+++ b/src/H5O.c
@@ -3173,7 +3173,7 @@ H5O_delete_oh(H5F_t *f, hid_t dxpl_id, H5O_t *oh)
type = curr_msg->type;
/* Check if there is a file space deletion callback for this type of message */
- if(type->delete) {
+ if(type->del) {
/*
* Decode the message if necessary.
*/
@@ -3184,7 +3184,7 @@ H5O_delete_oh(H5F_t *f, hid_t dxpl_id, H5O_t *oh)
HGOTO_ERROR(H5E_OHDR, H5E_CANTDECODE, FAIL, "unable to decode message");
} /* end if */
- if ((type->delete)(f, dxpl_id, curr_msg->native)<0)
+ if ((type->del)(f, dxpl_id, curr_msg->native)<0)
HGOTO_ERROR(H5E_OHDR, H5E_CANTDELETE, FAIL, "unable to delete file space for object header message");
} /* end if */
} /* end for */