diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-03-30 20:45:20 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-03-30 20:45:20 (GMT) |
commit | 0180863320994d8a7efba446f81bd73819315cd2 (patch) | |
tree | 20f05c3c8792ba079ca636a8264800891cfb4f25 /src/H5Dcontig.c | |
parent | b3e1ba581622ed413b7da5ddc7c7e99d37a00c73 (diff) | |
download | hdf5-0180863320994d8a7efba446f81bd73819315cd2.zip hdf5-0180863320994d8a7efba446f81bd73819315cd2.tar.gz hdf5-0180863320994d8a7efba446f81bd73819315cd2.tar.bz2 |
[svn-r8288] Purpose:
Bug fix/code cleanup
Description:
Copy Robb's feature in SSlib that checks that the name of the function
used in the FUNC_ENTER macro is actually the name of function.
Fixed a bunch of typos & copy-n-pasto's for functions with incorrect names.
Platforms tested:
FreeBSD 4.9 (sleipnir) w/parallel
too minor to require h5committest
Diffstat (limited to 'src/H5Dcontig.c')
-rw-r--r-- | src/H5Dcontig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Dcontig.c b/src/H5Dcontig.c index bb64916..525d557 100644 --- a/src/H5Dcontig.c +++ b/src/H5Dcontig.c @@ -85,7 +85,7 @@ H5F_contig_create(H5F_t *f, hid_t dxpl_id, struct H5O_layout_t *layout) unsigned u; /* Local index variable */ herr_t ret_value=SUCCEED; /* Return value */ - FUNC_ENTER_NOAPI(H5O_contig_create, FAIL); + FUNC_ENTER_NOAPI(H5F_contig_create, FAIL); /* check args */ assert(f); @@ -334,7 +334,7 @@ H5F_contig_delete(H5F_t *f, hid_t dxpl_id, const struct H5O_layout_t *layout) unsigned u; /* Local index variable */ herr_t ret_value=SUCCEED; /* Return value */ - FUNC_ENTER_NOAPI(H5O_contig_delete, FAIL); + FUNC_ENTER_NOAPI(H5F_contig_delete, FAIL); /* check args */ assert(f); |