diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-09-26 15:05:42 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-09-26 15:05:42 (GMT) |
commit | 53a2d21415105951dd5d81969ee6f21d9e7216f8 (patch) | |
tree | 8618dc179932fe5fddcb1808e2bd5b323e0d4473 /test | |
parent | 2d009f860c9895be5b8976f19cf36ef2293db018 (diff) | |
download | hdf5-53a2d21415105951dd5d81969ee6f21d9e7216f8.zip hdf5-53a2d21415105951dd5d81969ee6f21d9e7216f8.tar.gz hdf5-53a2d21415105951dd5d81969ee6f21d9e7216f8.tar.bz2 |
[svn-r12682] Description:
Make Windows64 compiler happy by initializing variable... :-)
Tested on:
None - just eyeballed (very minor)
Diffstat (limited to 'test')
-rw-r--r-- | test/fheap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fheap.c b/test/fheap.c index 859c57f..dee423b 100644 --- a/test/fheap.c +++ b/test/fheap.c @@ -821,7 +821,7 @@ del_objs_half_refill(H5F_t *f, hid_t dxpl, H5HF_t **fh, fheap_test_param_t *tpar fheap_heap_ids_t *keep_ids) { unsigned char *wobj; /* Buffer for object to insert */ - haddr_t fh_addr; /* Address of fractal heap */ + haddr_t fh_addr = HADDR_UNDEF; /* Address of fractal heap */ size_t id_len; /* Size of fractal heap IDs */ size_t half_nobjs; /* Half of total # of objects */ size_t obj_idx; /* Index of the object to remove */ |