summaryrefslogtreecommitdiffstats
path: root/src/H5VL.c
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2021-01-27 14:15:34 (GMT)
committerGitHub <noreply@github.com>2021-01-27 14:15:34 (GMT)
commit9524dc494f0e62c7b6b82941c34552d2e2bb1283 (patch)
tree9d6f86e5d539d25d4045765fb50ca4e3bb2be6f1 /src/H5VL.c
parent799ec0fde45a883e3652f29a1f66dd2fdb4c56f9 (diff)
downloadhdf5-9524dc494f0e62c7b6b82941c34552d2e2bb1283.zip
hdf5-9524dc494f0e62c7b6b82941c34552d2e2bb1283.tar.gz
hdf5-9524dc494f0e62c7b6b82941c34552d2e2bb1283.tar.bz2
Jan ws changes (#282)
* OESS-98 convert plugin option to FetchContent, add tests * Fixes for pkcfg files because of plugin option * OESS-98 fix tools test for plugins * Keep doxygen comments under 100 chars long - format hint * Whitespace * HDFFV-11144 - Reclassify CMake messages * HDFFV-11099/11100 added help text * Reworked switch statement to compare string instead * Fix typo * Whitespace fixes except for H5Tprivate.h typo fix
Diffstat (limited to 'src/H5VL.c')
-rw-r--r--src/H5VL.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5VL.c b/src/H5VL.c
index 628d6bb..f5854c2 100644
--- a/src/H5VL.c
+++ b/src/H5VL.c
@@ -685,7 +685,8 @@ H5VLget_file_type(void *file_obj, hid_t connector_id, hid_t dtype_id)
/* Create VOL object for file if necessary (force_conv will be TRUE if and
* only if file needs to be passed to H5T_set_loc) */
- if (H5T_GET_FORCE_CONV(dtype) && (NULL == (file_vol_obj = H5VL_create_object_using_vol_id(H5I_FILE, file_obj, connector_id))))
+ if (H5T_GET_FORCE_CONV(dtype) &&
+ (NULL == (file_vol_obj = H5VL_create_object_using_vol_id(H5I_FILE, file_obj, connector_id))))
HGOTO_ERROR(H5E_VOL, H5E_CANTCREATE, FAIL, "can't create VOL object")
/* Copy the datatype */