diff options
author | David Young <dyoung@hdfgroup.org> | 2019-11-27 17:16:52 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2019-11-27 17:16:52 (GMT) |
commit | 8fb9fb5d4dab0b7e9a9884611d0511e2a03228a2 (patch) | |
tree | b6c708b99187fdb1f42fe46f454b8dcc66a8da05 /test/fillval.c | |
parent | 9f61c26927ac74c4498cbebd7c9f2166d5f5b786 (diff) | |
download | hdf5-8fb9fb5d4dab0b7e9a9884611d0511e2a03228a2.zip hdf5-8fb9fb5d4dab0b7e9a9884611d0511e2a03228a2.tar.gz hdf5-8fb9fb5d4dab0b7e9a9884611d0511e2a03228a2.tar.bz2 |
Revert "Oops, remove more C99 designated initializers for VS 2010 compatibility."
This reverts commit f907b511d06612dafc7814a7c30f2f3d2b76d52b.
Diffstat (limited to 'test/fillval.c')
-rw-r--r-- | test/fillval.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/test/fillval.c b/test/fillval.c index dd0ca7f..5c20e14 100644 --- a/test/fillval.c +++ b/test/fillval.c @@ -758,15 +758,11 @@ test_rdwr_cases(hid_t file, hid_t dcpl, const char *dname, void *_fillval, int fillval=(-1), val_rd, should_be; int i, j, *buf=NULL, odd; unsigned u; - comp_datatype rd_c, fill_c, should_be_c; + comp_datatype rd_c, fill_c = {.a = 0, .x = 0, .y = 0, .z = 0}, + should_be_c; comp_datatype *buf_c=NULL; H5D_space_status_t allocation; - fill_c.a = 0; - fill_c.x = 0; - fill_c.y = 0; - fill_c.z = 0; - if(datatype == H5T_INTEGER) { fillval = *(int*)_fillval; } |