mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
[svn-r2805]
Purpose: Fix typos in these files. Description: In the functions H5Pset_apl_xxx in these files, the parameters of FUNC_ENTER do not match the function names. So changed them back to function names. Solution: [details about the changes, algorithm, etc...] [Please as detail as you can since your own explanation is better than others guessing it from the code.] Platforms tested: No test has been done because these are all typos, no effect on program.
This commit is contained in:
parent
3293e213ce
commit
9c109121c4
@ -224,7 +224,7 @@ H5Pset_fapl_dpss(hid_t fapl_id)
|
||||
{
|
||||
herr_t ret_value=FAIL;
|
||||
|
||||
FUNC_ENTER (H5FD_set_fapl_dpss, FAIL);
|
||||
FUNC_ENTER (H5Pset_fapl_dpss, FAIL);
|
||||
H5TRACE1("e","i",fapl_id);
|
||||
|
||||
/* Check arguments */
|
||||
|
@ -213,7 +213,7 @@ H5Pset_fapl_gass(hid_t fapl_id, GASS_Info info)
|
||||
herr_t ret_value=FAIL;
|
||||
H5FD_gass_fapl_t fa;
|
||||
|
||||
FUNC_ENTER(H5FD_set_fapl_gass, FAIL);
|
||||
FUNC_ENTER(H5Pset_fapl_gass, FAIL);
|
||||
|
||||
/* Check arguments */
|
||||
if (H5P_FILE_ACCESS!=H5Pget_class(fapl_id))
|
||||
|
@ -169,7 +169,7 @@ H5Pset_fapl_srb(hid_t fapl_id, SRB_Info info)
|
||||
H5FD_srb_fapl_t fa;
|
||||
int srb_status;
|
||||
|
||||
FUNC_ENTER(h5FD_set_fapl_srb, FAIL);
|
||||
FUNC_ENTER(H5Pset_fapl_srb, FAIL);
|
||||
|
||||
if(H5P_FILE_ACCESS != H5Pget_class(fapl_id))
|
||||
HRETURN_ERROR(H5E_PLIST, H5E_BADTYPE, FAIL, "Not a fapl");
|
||||
|
Loading…
Reference in New Issue
Block a user