mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
Modified variable declaration for Windows support.
This commit is contained in:
parent
5800b4b41a
commit
e0e64736b5
@ -368,8 +368,9 @@ generate_basetype(Symbol* tsym, NCConstant* con, Bytebuffer* codebuf, Datalist*
|
||||
} else {
|
||||
generator->listbegin(generator,LISTVLEN,data->length,codebuf,&uid);
|
||||
for(count=0;count<data->length;count++) {
|
||||
NCConstant* con;
|
||||
generator->list(generator,LISTVLEN,uid,count,vlenbuf);
|
||||
NCConstant* con = datalistith(data,count);
|
||||
con = datalistith(data,count);
|
||||
generate_basetype(tsym->typ.basetype,con,vlenbuf,NULL,generator);
|
||||
}
|
||||
generator->listend(generator,LISTVLEN,uid,count,codebuf,(void*)vlenbuf);
|
||||
|
Loading…
Reference in New Issue
Block a user