mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-04-06 18:00:24 +08:00
now using storage everywhere
This commit is contained in:
parent
61357cfd4d
commit
fcceec60a4
@ -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");
|
||||
|
@ -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++)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user