diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-01-09 18:40:19 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-01-09 18:40:19 (GMT) |
commit | 98f01e2df2b407bfae2cd24fe4f03e184712eb75 (patch) | |
tree | f1981909055143f84c94799354d3d2a266c30c0f /src/H5F.c | |
parent | 9a433b99a56dc575f1c0b11f95b744de61859dbb (diff) | |
download | hdf5-98f01e2df2b407bfae2cd24fe4f03e184712eb75.zip hdf5-98f01e2df2b407bfae2cd24fe4f03e184712eb75.tar.gz hdf5-98f01e2df2b407bfae2cd24fe4f03e184712eb75.tar.bz2 |
[svn-r6255] Purpose:
Code cleanup
Description:
Clean up a few more warnings and update dependencies.
Platforms tested:
Linux 2.2.18smp (eirene) serial & parallel
Diffstat (limited to 'src/H5F.c')
-rw-r--r-- | src/H5F.c | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -3472,7 +3472,6 @@ H5F_sizeof_addr(const H5F_t *f) assert(f); assert(f->shared); -done: FUNC_LEAVE(f->shared->sizeof_addr); } @@ -3505,7 +3504,6 @@ H5F_sizeof_size(const H5F_t *f) assert(f); assert(f->shared); -done: FUNC_LEAVE(f->shared->sizeof_size); } @@ -3539,7 +3537,6 @@ unsigned H5F_sym_leaf_k(const H5F_t *f) assert(f); assert(f->shared); -done: FUNC_LEAVE(f->shared->sym_leaf_k); } @@ -3575,7 +3572,6 @@ H5F_Kvalue(const H5F_t *f, const H5B_class_t *type) assert(f->shared); assert(type); -done: FUNC_LEAVE(f->shared->btree_k[type->id]); } /* end H5F_Kvalue() */ @@ -3672,9 +3668,8 @@ H5F_get_base_addr(const H5F_t *f) assert(f); assert(f->shared); -done: FUNC_LEAVE(f->shared->base_addr); -} /* end H5F_get_bass_addr() */ +} /* end H5F_get_base_addr() */ /*------------------------------------------------------------------------- |