summaryrefslogtreecommitdiffstats
path: root/src/H5HGcache.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2019-11-27 17:16:52 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2019-11-27 17:16:52 (GMT)
commit8fb9fb5d4dab0b7e9a9884611d0511e2a03228a2 (patch)
treeb6c708b99187fdb1f42fe46f454b8dcc66a8da05 /src/H5HGcache.c
parent9f61c26927ac74c4498cbebd7c9f2166d5f5b786 (diff)
downloadhdf5-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 'src/H5HGcache.c')
-rw-r--r--src/H5HGcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5HGcache.c b/src/H5HGcache.c
index 9f6e73f..e3d0f4c 100644
--- a/src/H5HGcache.c
+++ b/src/H5HGcache.c
@@ -205,7 +205,7 @@ static herr_t
H5HG__cache_heap_get_final_load_size(const void *image, size_t image_len,
void *udata, size_t *actual_len)
{
- H5HG_heap_t heap; /* Global heap */
+ H5HG_heap_t heap = {.size = 0}; /* Global heap */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_STATIC