[svn-r2259]

Fixed a typo in the H5Pget_gc_references function name (was H5Pget_gc_reference).
This commit is contained in:
Elena Pourmal 2000-05-17 08:30:21 -05:00
parent 1f6bb057e0
commit 30fe4cfa21

View File

@ -2584,10 +2584,10 @@ H5Pset_gc_references(hid_t fapl_id, unsigned gc_ref)
/*-------------------------------------------------------------------------
* Function: H5Pget_gc_refernces
* Function: H5Pget_gc_references
*
* Purpose: Returns the current setting for the garbage collection
* refernces property from a file access property list.
* references property from a file access property list.
*
* Return: Non-negative on success/Negative on failure
*
@ -2599,11 +2599,11 @@ H5Pset_gc_references(hid_t fapl_id, unsigned gc_ref)
*-------------------------------------------------------------------------
*/
herr_t
H5Pget_gc_reference(hid_t fapl_id, unsigned *gc_ref/*out*/)
H5Pget_gc_references(hid_t fapl_id, unsigned *gc_ref/*out*/)
{
H5F_access_t *fapl = NULL;
FUNC_ENTER(H5Pget_gc_reference, FAIL);
FUNC_ENTER(H5Pget_gc_references, FAIL);
H5TRACE2("e","ix",fapl_id,gc_ref);
/* Check args */