From 3b3d15822acd80172e47f560312843001d8a99e0 Mon Sep 17 00:00:00 2001 From: Raymond Lu Date: Mon, 1 Jul 2002 14:16:43 -0500 Subject: [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. --- test/fillval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- cgit v0.12