diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2002-07-01 19:16:43 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2002-07-01 19:16:43 (GMT) |
commit | 3b3d15822acd80172e47f560312843001d8a99e0 (patch) | |
tree | 631121e4c56f4422eefcc3c1d201170053e73686 /test | |
parent | 7d618993c58dd9077597671bd3ed2a7be12585b2 (diff) | |
download | hdf5-3b3d15822acd80172e47f560312843001d8a99e0.zip hdf5-3b3d15822acd80172e47f560312843001d8a99e0.tar.gz hdf5-3b3d15822acd80172e47f560312843001d8a99e0.tar.bz2 |
[svn-r5736]
Purpose:
Bug fix.
Description:
This test fails on TRUE64 system because a compound variable(fill_ctype
in test_rdwr) wasn't initialized.
Solution:
Initialize to zero.
Platforms tested:
Pittsburg's True64(lemieux) system.
Diffstat (limited to 'test')
-rw-r--r-- | test/fillval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fillval.c b/test/fillval.c index 97bb690..fd9045f 100644 --- a/test/fillval.c +++ b/test/fillval.c @@ -849,7 +849,7 @@ test_rdwr(hid_t fapl, const char *base_name, H5D_layout_t layout) hsize_t ch_size[5] = {1, 16, 8, 4, 2}; int nerrors=0; int fillval = 0x4c70f1cd; - comp_datatype fill_ctype; + comp_datatype fill_ctype={0,0,0,0}; if (H5D_CHUNKED==layout) { TESTING("chunked dataset I/O"); |