mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-18 15:15:56 +08:00
[svn-r2259]
Fixed a typo in the H5Pget_gc_references function name (was H5Pget_gc_reference).
This commit is contained in:
parent
1f6bb057e0
commit
30fe4cfa21
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user