mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-25 17:00:45 +08:00
[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.
This commit is contained in:
parent
7d618993c5
commit
3b3d15822a
@ -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");
|
||||
|
Loading…
x
Reference in New Issue
Block a user