diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-11-03 22:27:54 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-11-03 22:27:54 (GMT) |
commit | 0001a136175eb59c3c2ff778c67e763bae73f473 (patch) | |
tree | 7ec60d039e634e43192f5e327b0c327b94e232d9 /src/H5F.c | |
parent | 3af26fa7a598221427d43fa8a1620cf18fbeb2dc (diff) | |
download | hdf5-0001a136175eb59c3c2ff778c67e763bae73f473.zip hdf5-0001a136175eb59c3c2ff778c67e763bae73f473.tar.gz hdf5-0001a136175eb59c3c2ff778c67e763bae73f473.tar.bz2 |
[svn-r4589] Purpose:
Code cleanup
Description:
Clean up various compiler warnings from generic property updates.
Platforms tested:
FreeBSD 4.4 (hawkwind)
Diffstat (limited to 'src/H5F.c')
-rw-r--r-- | src/H5F.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1034,7 +1034,9 @@ H5F_new(H5F_file_t *shared, hid_t fcpl_id, hid_t fapl_id) { H5F_t *f=NULL, *ret_value=NULL; int n; +#ifdef H5_HAVE_PARALLEL hid_t driver_id = -1; +#endif /* H5_HAVE_PARALLEL */ FUNC_ENTER(H5F_new, NULL); @@ -1774,9 +1776,6 @@ H5Fcreate(const char *filename, unsigned flags, hid_t fcpl_id, H5F_t *new_file = NULL; /*file struct for new file */ hid_t ret_value = FAIL; /*return value */ - size_t meta_block_size = 0; - hid_t driver_id=-1; - FUNC_ENTER(H5Fcreate, FAIL); H5TRACE4("i","sIuii",filename,flags,fcpl_id,fapl_id); |