summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/H5FDstream.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/H5FDstream.c b/src/H5FDstream.c
index 5c2e6ed..786eaa1 100644
--- a/src/H5FDstream.c
+++ b/src/H5FDstream.c
@@ -180,7 +180,7 @@ static const H5FD_class_t H5FD_stream_g =
H5FD_stream_open, /* open */
H5FD_stream_close, /* close */
NULL, /* cmp */
- H5FD_stream_query, /*query */
+ H5FD_stream_query, /* query */
NULL, /* alloc */
NULL, /* free */
H5FD_stream_get_eoa, /* get_eoa */
@@ -902,16 +902,17 @@ static herr_t H5FD_stream_close (H5FD_t *_stream)
*
*-------------------------------------------------------------------------
*/
-static herr_t H5FD_stream_query (const H5FD_t UNUSED *_f,
- unsigned long *flags /* out */)
+static herr_t
+H5FD_stream_query(const H5FD_t UNUSED *_f,
+ unsigned long *flags/*out*/)
{
FUNC_ENTER (H5FD_stream_query, SUCCEED);
/* Set the VFL feature flags that this driver supports */
- if (flags)
- {
- /* OK to perform data sieving for faster raw data reads & writes */
- *flags |= H5FD_FEAT_DATA_SIEVE;
+ if (flags) {
+ *flags = 0;
+ /* OK to perform data sieving for faster raw data reads & writes */
+ *flags |= H5FD_FEAT_DATA_SIEVE;
}
FUNC_LEAVE (SUCCEED);