diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-06-11 19:53:30 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-06-11 19:53:30 (GMT) |
commit | bea931d73cb9db08ac220393c2cb59dd6326a8ef (patch) | |
tree | 2a3852ebb0641453477852bf0c93be5b06e99335 /src/H5B.c | |
parent | d9348f3763294259cc75f15bd255133c820112db (diff) | |
download | hdf5-bea931d73cb9db08ac220393c2cb59dd6326a8ef.zip hdf5-bea931d73cb9db08ac220393c2cb59dd6326a8ef.tar.gz hdf5-bea931d73cb9db08ac220393c2cb59dd6326a8ef.tar.bz2 |
[svn-r3983] Purpose:
Code cleanups
Description:
Fixed a small number of warnings and also took out the H5private.h
header from H5Ppublic.h
Platforms tested:
FreeBSD 4.3 (hawkwind)
Diffstat (limited to 'src/H5B.c')
-rw-r--r-- | src/H5B.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2054,8 +2054,8 @@ H5B_copy(H5F_t *f, const H5B_t *old_bt) H5B_t *ret_value = NULL; hsize_t total_native_keysize; hsize_t size; - uintn nkeys; - uintn u; + hsize_t nkeys; + hsize_t u; FUNC_ENTER(H5B_copy, NULL); |