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

cleanup

parent 68f6ec4a
No related branches found
No related tags found
1 merge request!83M214003/develop
Pipeline #60639 failed
...@@ -981,7 +981,7 @@ cdfDefVar(stream_t *streamptr, int varID) ...@@ -981,7 +981,7 @@ cdfDefVar(stream_t *streamptr, int varID)
cdfGenVarname(fileID, name, pnum, pcat, &pdis, &code); cdfGenVarname(fileID, name, pnum, pcat, &pdis, &code);
int dtype = vlistInqVarDatatype(vlistID, varID); int dtype = vlistInqVarDatatype(vlistID, varID);
const nc_type xtype = cdfDefDatatype(dtype, streamptr); nc_type xtype = cdfDefDatatype(dtype, streamptr);
if (streamptr->ncmode == 2) if (streamptr->ncmode == 2)
{ {
...@@ -1364,7 +1364,7 @@ cdfDefineStartAndCount(stream_t *streamptr, int varID, int xid, int yid, int zid ...@@ -1364,7 +1364,7 @@ cdfDefineStartAndCount(stream_t *streamptr, int varID, int xid, int yid, int zid
int vlistID = streamptr->vlistID; int vlistID = streamptr->vlistID;
int fileID = streamptr->fileID; int fileID = streamptr->fileID;
const long ntsteps = streamptr->ntsteps; long ntsteps = streamptr->ntsteps;
if (CDI_Debug) Message("ntsteps = %ld", ntsteps); if (CDI_Debug) Message("ntsteps = %ld", ntsteps);
int timetype = vlistInqVarTimetype(vlistID, varID); int timetype = vlistInqVarTimetype(vlistID, varID);
...@@ -1457,7 +1457,7 @@ cdfDefineStartAndCountChunk(stream_t *streamptr, const int rect[][2], int varID, ...@@ -1457,7 +1457,7 @@ cdfDefineStartAndCountChunk(stream_t *streamptr, const int rect[][2], int varID,
int vlistID = streamptr->vlistID; int vlistID = streamptr->vlistID;
int fileID = streamptr->fileID; int fileID = streamptr->fileID;
const long ntsteps = streamptr->ntsteps; long ntsteps = streamptr->ntsteps;
if (CDI_Debug) Message("ntsteps = %ld", ntsteps); if (CDI_Debug) Message("ntsteps = %ld", ntsteps);
int timetype = vlistInqVarTimetype(vlistID, varID); int timetype = vlistInqVarTimetype(vlistID, varID);
...@@ -1554,7 +1554,7 @@ cdfDefineStartAndCountSlice(stream_t *streamptr, int varID, int levelID, int dim ...@@ -1554,7 +1554,7 @@ cdfDefineStartAndCountSlice(stream_t *streamptr, int varID, int levelID, int dim
int vlistID = streamptr->vlistID; int vlistID = streamptr->vlistID;
int fileID = streamptr->fileID; int fileID = streamptr->fileID;
const long ntsteps = streamptr->ntsteps; long ntsteps = streamptr->ntsteps;
if (CDI_Debug) Message("ntsteps = %ld", ntsteps); if (CDI_Debug) Message("ntsteps = %ld", ntsteps);
int timetype = vlistInqVarTimetype(vlistID, varID); int timetype = vlistInqVarTimetype(vlistID, varID);
......
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