mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-17 16:50:18 +08:00
Minor tweaks to comments and LOG messages.
This commit is contained in:
parent
658e298cf8
commit
b98a475f37
@ -26,10 +26,6 @@ because it can free an array of VLEN objects.
|
||||
\param vl pointer to the vlen object.
|
||||
|
||||
\returns ::NC_NOERR No error.
|
||||
\returns ::NC_EBADID Bad \ref ncid.
|
||||
\returns ::NC_EBADTYPE Bad type id.
|
||||
\returns ::NC_ENOTNC4 Not an netCDF-4 file, or classic model enabled.
|
||||
\returns ::NC_EHDFERR An error was reported by the HDF5 layer.
|
||||
*/
|
||||
int
|
||||
nc_free_vlen(nc_vlen_t *vl)
|
||||
@ -51,10 +47,6 @@ will free the vlen memory.
|
||||
\param vlens pointer to the vlen object.
|
||||
|
||||
\returns ::NC_NOERR No error.
|
||||
\returns ::NC_EBADID Bad \ref ncid.
|
||||
\returns ::NC_EBADTYPE Bad type id.
|
||||
\returns ::NC_ENOTNC4 Not an netCDF-4 file, or classic model enabled.
|
||||
\returns ::NC_EHDFERR An error was reported by the HDF5 layer.
|
||||
*/
|
||||
int
|
||||
nc_free_vlens(size_t len, nc_vlen_t vlens[])
|
||||
|
@ -48,8 +48,8 @@ nc4_get_att(int ncid, NC *nc, int varid, const char *name,
|
||||
my_attnum = *attnum;
|
||||
assert(nc && NC4_DATA(nc));
|
||||
|
||||
LOG((3, "nc4_get_att: ncid 0x%x varid %d name %s attnum %d mem_type %d",
|
||||
ncid, varid, name, my_attnum, mem_type));
|
||||
LOG((3, "%s: ncid 0x%x varid %d name %s attnum %d mem_type %d",
|
||||
__func__, ncid, varid, name, my_attnum, mem_type));
|
||||
|
||||
/* Find info for this file and group, and set pointer to each. */
|
||||
h5 = NC4_DATA(nc);
|
||||
|
Loading…
Reference in New Issue
Block a user