diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2002-12-03 19:35:24 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2002-12-03 19:35:24 (GMT) |
commit | 1a9fa4def1102afe9fe0e1770db474019fea77cc (patch) | |
tree | bee9c9168445001d8921f37a9578b0ec04e3afde /src/H5F.c | |
parent | db6808a25b1ccfcaa936811008c3e6a5bd75cc32 (diff) | |
download | hdf5-1a9fa4def1102afe9fe0e1770db474019fea77cc.zip hdf5-1a9fa4def1102afe9fe0e1770db474019fea77cc.tar.gz hdf5-1a9fa4def1102afe9fe0e1770db474019fea77cc.tar.bz2 |
[svn-r6147] Description:
corrected a typo--H5Fget_obj_counts should be H5Fget_obj_count.
Platforms tested:
Eirene only since it is just a string typo.
Diffstat (limited to 'src/H5F.c')
-rw-r--r-- | src/H5F.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -918,7 +918,7 @@ H5Fget_obj_count(hid_t file_id, unsigned types, unsigned *obj_id_count) H5F_t *f=NULL; herr_t ret_value; - FUNC_ENTER_API(H5Fget_obj_counts, FAIL); + FUNC_ENTER_API(H5Fget_obj_count, FAIL); H5TRACE3("e","iIu*Iu",file_id,types,obj_id_count); if( file_id != H5F_OBJ_ALL && (NULL==(f=H5I_object_verify(file_id,H5I_FILE))) ) @@ -2123,7 +2123,7 @@ H5Fcreate(const char *filename, unsigned flags, hid_t fcpl_id, H5F_t *new_file = NULL; /*file struct for new file */ hid_t ret_value; /*return value */ - + FUNC_ENTER_API(H5Fcreate, FAIL); H5TRACE4("i","sIuii",filename,flags,fcpl_id,fapl_id); @@ -2852,7 +2852,7 @@ herr_t H5Fclose(hid_t file_id) { herr_t ret_value = SUCCEED; - + FUNC_ENTER_API(H5Fclose, FAIL); H5TRACE1("e","i",file_id); @@ -2866,7 +2866,7 @@ H5Fclose(hid_t file_id) */ if (H5I_dec_ref (file_id)<0) HGOTO_ERROR (H5E_ATOM, H5E_CANTINIT, FAIL, "problems closing file"); - + done: FUNC_LEAVE(ret_value); } |