mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-23 16:59:54 +08:00
comment cleanup
This commit is contained in:
parent
5a52f28bb7
commit
2cc3d10f4b
@ -4,7 +4,7 @@
|
|||||||
/**
|
/**
|
||||||
* @file
|
* @file
|
||||||
* @internal This file contains functions that are used in file
|
* @internal This file contains functions that are used in file
|
||||||
* opens, both fast and slow.
|
* opens.
|
||||||
*
|
*
|
||||||
* @author Ed Hartnett
|
* @author Ed Hartnett
|
||||||
*/
|
*/
|
||||||
@ -1610,15 +1610,15 @@ nc4_read_atts(NC_GRP_INFO_T *grp, NC_VAR_INFO_T *var)
|
|||||||
/* Check inputs. */
|
/* Check inputs. */
|
||||||
assert(grp);
|
assert(grp);
|
||||||
|
|
||||||
/* Assign var and grp in struct. */
|
/* Assign var and grp in struct. (var may be NULL). */
|
||||||
att_info.var = var;
|
att_info.var = var;
|
||||||
att_info.grp = grp;
|
att_info.grp = grp;
|
||||||
|
|
||||||
/* Determine where to read from. */
|
/* Determine where to read from in the HDF5 file. */
|
||||||
locid = var ? var->hdf_datasetid : grp->hdf_grpid;
|
locid = var ? var->hdf_datasetid : grp->hdf_grpid;
|
||||||
|
|
||||||
/* Now read all the attributes of this variable, ignoring the
|
/* Now read all the attributes at this location, ignoring special
|
||||||
ones that hold HDF5 dimension scale information. */
|
* netCDF hidden attributes. */
|
||||||
if ((H5Aiterate2(locid, H5_INDEX_CRT_ORDER, H5_ITER_INC, NULL,
|
if ((H5Aiterate2(locid, H5_INDEX_CRT_ORDER, H5_ITER_INC, NULL,
|
||||||
att_read_callbk, &att_info)) < 0)
|
att_read_callbk, &att_info)) < 0)
|
||||||
return NC_EATTMETA;
|
return NC_EATTMETA;
|
||||||
|
Loading…
Reference in New Issue
Block a user