diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-09-16 10:34:25 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-09-16 10:34:25 (GMT) |
commit | cc0165a973d17386cd4983ac1d0394ad4feb8034 (patch) | |
tree | 47c0839db019c336beeae779a6030f85869eb97f /hl/src/H5LT.c | |
parent | 183ba43b41674c3d8912cb3759bc57fa846155ed (diff) | |
download | hdf5-cc0165a973d17386cd4983ac1d0394ad4feb8034.zip hdf5-cc0165a973d17386cd4983ac1d0394ad4feb8034.tar.gz hdf5-cc0165a973d17386cd4983ac1d0394ad4feb8034.tar.bz2 |
[svn-r27799] Minor warning fixes in the high-level library.
Tested on: jam (too minor for h5committest)
Diffstat (limited to 'hl/src/H5LT.c')
-rw-r--r-- | hl/src/H5LT.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/hl/src/H5LT.c b/hl/src/H5LT.c index 8444e27..107e238 100644 --- a/hl/src/H5LT.c +++ b/hl/src/H5LT.c @@ -866,13 +866,13 @@ out: */ hid_t H5LTopen_file_image(void *buf_ptr, size_t buf_size, unsigned flags) { - hid_t fapl, file_id; /* HDF5 identifiers */ - unsigned file_open_flags;/* Flags for image open */ - char file_name[64]; /* Filename buffer */ - size_t alloc_incr; /* Buffer allocation increment */ - size_t min_incr = 65536; /* Minimum buffer increment */ - double buf_prcnt = 0.1f; /* Percentage of buffer size to set - as increment */ + hid_t fapl=-1, file_id=-1; /* HDF5 identifiers */ + unsigned file_open_flags; /* Flags for image open */ + char file_name[64]; /* Filename buffer */ + size_t alloc_incr; /* Buffer allocation increment */ + size_t min_incr = 65536; /* Minimum buffer increment */ + double buf_prcnt = 0.1f; /* Percentage of buffer size to set + as increment */ static long file_name_counter; H5FD_file_image_callbacks_t callbacks = {&image_malloc, &image_memcpy, &image_realloc, &image_free, |