now using storage everywhere

This commit is contained in:
Edward Hartnett 2020-03-08 07:13:07 -06:00
parent 61357cfd4d
commit fcceec60a4
2 changed files with 3 additions and 3 deletions

View File

@ -1696,9 +1696,9 @@ rec_print_metadata(NC_GRP_INFO_T *grp, int tab_count)
}
if (!var->meta_read)
strcat(storage_str, "unknown");
else if (var->contiguous)
else if (var->storage == NC_CONTIGUOUS)
strcat(storage_str, "contiguous");
else if (var->compact)
else if (var->storage == NC_COMPACT)
strcat(storage_str, "compact");
else
strcat(storage_str, "chunked");

View File

@ -323,7 +323,7 @@ nc_inq_var_chunking_ints(int ncid, int varid, int *storagep, int *chunksizesp)
NULL, NULL, NULL, NULL, NULL);
/* Copy from size_t array. */
if (!retval && chunksizesp && var->contiguous == NC_CHUNKED)
if (!retval && chunksizesp && var->storage == NC_CHUNKED)
{
for (i = 0; i < var->ndims; i++)
{