diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-13 21:28:53 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-13 21:28:53 (GMT) |
commit | 5389806ce86337bad48fe293b4faabd8c8c61b53 (patch) | |
tree | 0cb9dbd4c8abe67fdc7db50191ba9551bb69dd6b /src/H5F.c | |
parent | 6fd7f81615780776b3e78860e9f386ac55994db9 (diff) | |
download | hdf5-5389806ce86337bad48fe293b4faabd8c8c61b53.zip hdf5-5389806ce86337bad48fe293b4faabd8c8c61b53.tar.gz hdf5-5389806ce86337bad48fe293b4faabd8c8c61b53.tar.bz2 |
[svn-r757] Added code for object references.
Diffstat (limited to 'src/H5F.c')
-rw-r--r-- | src/H5F.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1687,7 +1687,7 @@ H5Fclose(hid_t file_id) */ static herr_t H5F_mount(H5G_entry_t *loc, const char *name, H5F_t *child, - const H5F_mprop_t *plist) + const H5F_mprop_t __unused__ *plist) { H5G_t *mount_point = NULL; /*mount point group */ H5G_entry_t *mp_ent = NULL; /*mount point symbol table entry*/ @@ -1809,7 +1809,7 @@ H5F_unmount(H5G_entry_t *loc, const char *name) H5G_entry_t *ent = NULL; /*temporary symbol table entry */ herr_t ret_value = FAIL; /*return value */ uintn i; /*coutners */ - intn lt, rt, md, cmp; /*binary search indices */ + intn lt, rt, md=(-1), cmp; /*binary search indices */ FUNC_ENTER(H5F_unmount, FAIL); assert(loc); @@ -1909,7 +1909,7 @@ herr_t H5F_mountpoint(H5G_entry_t *find/*in,out*/) { H5F_t *parent = find->file; - intn lt, rt, md, cmp; + intn lt, rt, md=(-1), cmp; H5G_entry_t *ent = NULL; FUNC_ENTER(H5F_mountpoint, FAIL); |