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

Fix unused parameter warnings.

parent e8cadcbd
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,7 @@
static void
nullPackFunc(void *obj, void *buf, int size, int *pos, void *context)
{
(void)obj; (void)buf; (void)size; (void)pos; (void)context;
}
......@@ -174,6 +175,7 @@ cdiPioClientStreamWriteScatteredVarPart(int streamID, int varID,
static void
cdiPioCdfDefTimestepNOP(stream_t *streamptr, int tsID)
{
(void)streamptr; (void)tsID;
}
#endif
......
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