diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-09-14 17:35:39 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-09-14 17:35:39 (GMT) |
commit | 0ffb6caabd0bb2d6df9aec499d76fbcd72c32715 (patch) | |
tree | a9b0cb4aa7417e4001543761ac0bcbdfc8a32517 /test | |
parent | 907c60a12ac2fe3701fcbf7df70a151feb908d79 (diff) | |
download | hdf5-0ffb6caabd0bb2d6df9aec499d76fbcd72c32715.zip hdf5-0ffb6caabd0bb2d6df9aec499d76fbcd72c32715.tar.gz hdf5-0ffb6caabd0bb2d6df9aec499d76fbcd72c32715.tar.bz2 |
[svn-r12666] Description:
Initialize local variable that is causing compiler problems on Windows/64
Tested on:
None - too trivial
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 637513e..859c57f 100644 --- a/test/fheap.c +++ b/test/fheap.c @@ -914,7 +914,7 @@ static int del_objs(H5F_t *f, hid_t dxpl, H5HF_t **fh, fheap_test_param_t *tparam, fheap_heap_state_t *state, fheap_heap_ids_t *keep_ids) { - 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 obj_idx; /* Index of the object to remove */ size_t u; /* Local index variable */ |