From 5574317db71e71946f79dc811ec5c848e158ef7f Mon Sep 17 00:00:00 2001 From: Edward Hartnett Date: Sun, 8 Mar 2020 07:17:01 -0600 Subject: [PATCH] stop setting contiguous/compact fields at file open --- libhdf5/hdf5open.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libhdf5/hdf5open.c b/libhdf5/hdf5open.c index 7174f6b1f..7663b6e00 100644 --- a/libhdf5/hdf5open.c +++ b/libhdf5/hdf5open.c @@ -1107,12 +1107,10 @@ get_chunking_info(hid_t propid, NC_VAR_INFO_T *var) else if (layout == H5D_CONTIGUOUS) { var->storage = NC_CONTIGUOUS; - var->contiguous = NC_TRUE; } else if (layout == H5D_COMPACT) { var->storage = NC_COMPACT; - var->compact = NC_TRUE; } return NC_NOERR;