summaryrefslogtreecommitdiffstats
path: root/src/H5Pocpl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Pocpl.c')
-rw-r--r--src/H5Pocpl.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Pocpl.c b/src/H5Pocpl.c
index bad857f..a9968b0 100644
--- a/src/H5Pocpl.c
+++ b/src/H5Pocpl.c
@@ -1386,10 +1386,10 @@ H5P__ocrt_pipeline_enc(const void *value, void **_pp, size_t *size)
unsigned v; /* Local index variable */
/* encode filter ID */
- INT32ENCODE(*pp, pline->filter[u].id)
+ INT32ENCODE(*pp, pline->filter[u].id);
/* encode filter flags */
- H5_ENCODE_UNSIGNED(*pp, pline->filter[u].flags)
+ H5_ENCODE_UNSIGNED(*pp, pline->filter[u].flags);
/* encode filter name if it exists */
if (NULL != pline->filter[u].name) {
@@ -1413,7 +1413,7 @@ H5P__ocrt_pipeline_enc(const void *value, void **_pp, size_t *size)
/* encode all values */
for (v = 0; v < pline->filter[u].cd_nelmts; v++)
- H5_ENCODE_UNSIGNED(*pp, pline->filter[u].cd_values[v])
+ H5_ENCODE_UNSIGNED(*pp, pline->filter[u].cd_values[v]);
} /* end for */
} /* end if */
@@ -1482,10 +1482,10 @@ H5P__ocrt_pipeline_dec(const void **_pp, void *_value)
unsigned v; /* Local index variable */
/* decode filter id */
- INT32DECODE(*pp, filter.id)
+ INT32DECODE(*pp, filter.id);
/* decode filter flags */
- H5_DECODE_UNSIGNED(*pp, filter.flags)
+ H5_DECODE_UNSIGNED(*pp, filter.flags);
/* decode value indicating if the name is encoded */
has_name = *(*pp)++;
@@ -1512,7 +1512,7 @@ H5P__ocrt_pipeline_dec(const void **_pp, void *_value)
/* decode values */
for (v = 0; v < filter.cd_nelmts; v++)
- H5_DECODE_UNSIGNED(*pp, filter.cd_values[v])
+ H5_DECODE_UNSIGNED(*pp, filter.cd_values[v]);
/* Add the filter to the I/O pipeline */
if (H5Z_append(pline, filter.id, filter.flags, filter.cd_nelmts, filter.cd_values) < 0)