summaryrefslogtreecommitdiffstats
path: root/src/H5FDcore.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2021-03-26 23:16:38 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2021-03-26 23:16:38 (GMT)
commit0a73f3dd4b33abbd3ea9b024442e40ae05e56549 (patch)
tree4d4b5db05bca88459dc333cd3da57e0816419370 /src/H5FDcore.c
parent0011a5e758c2efa386fbeaa81553852c90c48e86 (diff)
downloadhdf5-0a73f3dd4b33abbd3ea9b024442e40ae05e56549.zip
hdf5-0a73f3dd4b33abbd3ea9b024442e40ae05e56549.tar.gz
hdf5-0a73f3dd4b33abbd3ea9b024442e40ae05e56549.tar.bz2
Fixed 1.6 compatibility issues and ran source formatter
Diffstat (limited to 'src/H5FDcore.c')
-rw-r--r--src/H5FDcore.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/H5FDcore.c b/src/H5FDcore.c
index 9d7b025..b50f71a 100644
--- a/src/H5FDcore.c
+++ b/src/H5FDcore.c
@@ -1137,14 +1137,13 @@ H5FD__core_query(const H5FD_t *_file, unsigned long *flags /* out */)
*flags |= H5FD_FEAT_AGGREGATE_METADATA; /* OK to aggregate metadata allocations */
*flags |= H5FD_FEAT_ACCUMULATE_METADATA; /* OK to accumulate metadata for faster writes */
*flags |= H5FD_FEAT_DATA_SIEVE; /* OK to perform data sieving for faster raw data reads & writes */
- *flags |= H5FD_FEAT_AGGREGATE_SMALLDATA; /* OK to aggregate "small" raw data allocations */
- *flags |= H5FD_FEAT_ALLOW_FILE_IMAGE; /* OK to use file image feature with this VFD */
+ *flags |= H5FD_FEAT_AGGREGATE_SMALLDATA; /* OK to aggregate "small" raw data allocations */
+ *flags |= H5FD_FEAT_ALLOW_FILE_IMAGE; /* OK to use file image feature with this VFD */
*flags |= H5FD_FEAT_CAN_USE_FILE_IMAGE_CALLBACKS; /* OK to use file image callbacks with this VFD */
/* These feature flags are only applicable if the backing store is enabled */
if (file && file->fd >= 0 && file->backing_store) {
- *flags |=
- H5FD_FEAT_POSIX_COMPAT_HANDLE; /* get_handle callback returns a POSIX file descriptor */
+ *flags |= H5FD_FEAT_POSIX_COMPAT_HANDLE; /* get_handle callback returns a POSIX file descriptor */
*flags |= H5FD_FEAT_DEFAULT_VFD_COMPATIBLE; /* VFD creates a file which can be opened with the
default VFD */
}