Skip to content
Snippets Groups Projects
Commit 79a90dbf authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Prevent incorrect calls for PIO chunk writing.

parent bdb652a1
No related branches found
No related tags found
No related merge requests found
......@@ -110,6 +110,9 @@ cdiPioClientStreamWriteVarChunk_(int streamID, int varID, int memtype,
const int rect[][2],
const void *data, int nmiss)
{
/* todo: handle transmission of float data */
if (memtype != MEMTYPE_DOUBLE)
Error("Writing of non-double type data not implemented!");
int vlistID = streamInqVlist(streamID);
int size = vlistInqVarSize(vlistID, varID),
varShape[3];
......
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