summaryrefslogtreecommitdiffstats
path: root/src/H5Fint.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2015-05-15 17:17:30 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2015-05-15 17:17:30 (GMT)
commit64e1ed4e2869ee23ed29e31afcf7683864ce4a06 (patch)
tree80942468464e05266f8be9d296b94d4025504199 /src/H5Fint.c
parent5520ff138ca79bb5aa46146908773c910f767554 (diff)
parentbf53b8c95c62bb359c2671870412f1e045ee1d59 (diff)
downloadhdf5-64e1ed4e2869ee23ed29e31afcf7683864ce4a06.zip
hdf5-64e1ed4e2869ee23ed29e31afcf7683864ce4a06.tar.gz
hdf5-64e1ed4e2869ee23ed29e31afcf7683864ce4a06.tar.bz2
[svn-r27090] merge from trunk.
Diffstat (limited to 'src/H5Fint.c')
-rw-r--r--src/H5Fint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Fint.c b/src/H5Fint.c
index c25668d..0979672 100644
--- a/src/H5Fint.c
+++ b/src/H5Fint.c
@@ -1098,7 +1098,7 @@ H5F_open(const char *name, unsigned flags, hid_t fcpl_id, hid_t fapl_id,
/* Initialize information about the superblock and allocate space for it */
/* (Writes superblock extension messages, if there are any) */
- if(H5F_super_init(file, dxpl_id) < 0)
+ if(H5F__super_init(file, dxpl_id) < 0)
HGOTO_ERROR(H5E_FILE, H5E_CANTINIT, NULL, "unable to allocate file superblock")
/* Create and open the root group */
@@ -1109,7 +1109,7 @@ H5F_open(const char *name, unsigned flags, hid_t fcpl_id, hid_t fapl_id,
HGOTO_ERROR(H5E_FILE, H5E_CANTINIT, NULL, "unable to create/open root group")
} else if (1 == shared->nrefs) {
/* Read the superblock if it hasn't been read before. */
- if(H5F_super_read(file, dxpl_id) < 0)
+ if(H5F__super_read(file, dxpl_id) < 0)
HGOTO_ERROR(H5E_FILE, H5E_READERROR, NULL, "unable to read superblock")
/* Open the root group */