summaryrefslogtreecommitdiffstats
path: root/src/H5F.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-07-25 17:35:17 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-07-25 17:35:17 (GMT)
commit2c8c5f96924b1e143d6047b802eda1aed9003d1c (patch)
tree49d081a241a9fb61c66b2fd6676c2cdba5f57604 /src/H5F.c
parent2a14d16d805762296e53ab25a6bc8b6a39230c11 (diff)
downloadhdf5-2c8c5f96924b1e143d6047b802eda1aed9003d1c.zip
hdf5-2c8c5f96924b1e143d6047b802eda1aed9003d1c.tar.gz
hdf5-2c8c5f96924b1e143d6047b802eda1aed9003d1c.tar.bz2
[svn-r2444] Checkpoint the Generic Property implementation. It's not active yet, but it's
close. This shouldn't interfere with other development work. (I think.. :-)
Diffstat (limited to 'src/H5F.c')
-rw-r--r--src/H5F.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5F.c b/src/H5F.c
index 0fea13c..b7cecfb 100644
--- a/src/H5F.c
+++ b/src/H5F.c
@@ -203,14 +203,14 @@ H5F_init_interface(void)
* which are pending completion because there are object headers still
* open within the file.
*/
- if (H5I_init_group(H5I_FILE, H5I_FILEID_HASHSIZE, 0,
- (H5I_free_t)H5F_close)<0 ||
- H5I_init_group(H5I_FILE_CLOSING, H5I_FILEID_HASHSIZE, 0,
- (H5I_free_t)H5F_close)<0) {
- HRETURN_ERROR (H5E_FILE, H5E_CANTINIT, FAIL,
+ if (H5I_init_group(H5I_FILE, H5I_FILEID_HASHSIZE, 0, (H5I_free_t)H5F_close)<0 ||
+ H5I_init_group(H5I_FILE_CLOSING, H5I_FILEID_HASHSIZE, 0, (H5I_free_t)H5F_close)<0) {
+ HRETURN_ERROR (H5E_FILE, H5E_CANTINIT, FAIL,
"unable to initialize interface");
}
+/* Register the default file creation & access properties */
+
/* Register predefined file drivers */
H5E_BEGIN_TRY {
if ((status=H5FD_SEC2)<0) goto end_registration;