mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-18 15:55:12 +08:00
accidental variable declaration in netcdf.h
This commit is contained in:
parent
7e27052f87
commit
93f722f594
4
cf
4
cf
@ -5,8 +5,8 @@ if test $# != 0 ; then
|
||||
cmds=$@
|
||||
fi
|
||||
|
||||
#HDF5=1
|
||||
#DAP=1
|
||||
HDF5=1
|
||||
DAP=1
|
||||
#CDMR=1
|
||||
#RPC=1
|
||||
#PGI=1
|
||||
|
@ -43,7 +43,7 @@
|
||||
|
||||
/* Forward */
|
||||
typedef struct NC NC; /* forward reference */
|
||||
struct ncio *nciop;
|
||||
struct ncio;
|
||||
|
||||
/*
|
||||
* The internal data types
|
||||
@ -288,7 +288,7 @@ struct NC {
|
||||
#define NC_HDIRTY 0x80 /* header info has changed */
|
||||
/* NC_NOFILL in netcdf.h, historical interface */
|
||||
int flags;
|
||||
struct ncio *nciop;
|
||||
struct ncio* nciop;
|
||||
size_t chunk; /* largest extent this layer will request from ncio->get() */
|
||||
size_t xsz; /* external size of this header, == var[0].begin */
|
||||
off_t begin_var; /* position of the first (non-record) var */
|
||||
|
Loading…
Reference in New Issue
Block a user