Skip to content
Snippets Groups Projects
Commit a8cb47fe authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

Cleanup up.

parent 9a8cbc05
No related branches found
Tags cdi-1.9.1
No related merge requests found
......@@ -446,10 +446,10 @@ void varAddRecord(int recID, int param, int gridID, int zaxistype, int lbounds,
if ( numavg ) vartable[varID].timave = 1;
if ( name ) if ( name[0] ) vartable[varID].name = strdup(name);
if ( stdname ) if ( stdname[0] ) vartable[varID].stdname = strdup(stdname);
if ( longname ) if ( longname[0] ) vartable[varID].longname = strdup(longname);
if ( units ) if ( units[0] ) vartable[varID].units = strdup(units);
if ( name && name[0] ) vartable[varID].name = strdup(name);
if ( stdname && stdname[0] ) vartable[varID].stdname = strdup(stdname);
if ( longname && longname[0] ) vartable[varID].longname = strdup(longname);
if ( units && units[0] ) vartable[varID].units = strdup(units);
}
else
{
......@@ -950,7 +950,8 @@ varDefZAxisSearch(int id, void *res, void *data)
}
int varDefZaxis(int vlistID, int zaxistype, int nlevels, const double *levels, const char **cvals, size_t clength, bool lbounds, const double *levels1, const double *levels2, int vctsize, const double *vct, char *name,
int varDefZaxis(int vlistID, int zaxistype, int nlevels, const double *levels, const char **cvals, size_t clength, bool lbounds,
const double *levels1, const double *levels2, int vctsize, const double *vct, char *name,
const char *longname, const char *units, int prec, int mode, int ltype1)
{
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment